Home >Backend Development >Python Tutorial >用Python脚本生成Android SALT扰码的方法

用Python脚本生成Android SALT扰码的方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-16 08:46:301413browse

复制代码 代码如下:

#!/usr/bin/python  
# Filename: gen_salt.py  
import random  

salt =[]  
for i in range(0, 30):  
  salt.append( random.randint(-128, 127) )  

print salt

执行 $ python gen_salt.py 后结果形式如下

[4, 30, 42, -124, -120, -75, 77, 38, -112, 35, 4, -19, -9, -83, 122, -115, -34, 44, -95, -31, -102, -94, -85, -20, -73, 126, -16, 28, 20, -54]

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn