Posted in Python onSeptember 18, 2013
#!/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]
用Python脚本生成Android SALT扰码的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@