ANSI X9.17
ANSI X9.17是一种伪随机数生成器,是一个美国国家标准协会(American National Standards Institute,ANSI)发布的关于伪随机数生成器的标准。它使用 DES(数据加密标准)或者三重DES作为其底层的加密算法。
ANSI_X9_17函数的两个参数:
- seed:用于生成伪随机数的种子。
- key:用于加密的密钥。
函数的主要逻辑是创建一个DES加密器,并使用系统当前时间作为向量;然后,使用DES加密器对向量进行加密,并与种子进行异或操作,生成伪随机数;最后,将生成的伪随机数作为新的种子,并将其返回。
最后,生成一个随机的8字节的种子和密钥。
代码部分:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| from Crypto.Cipher import DES import os import struct import time
def ANSI_X9_17(seed, key): des = DES.new(key, DES.MODE_ECB)
while True: dt = struct.pack('d', time.time())
xor_result = int.from_bytes(des.encrypt(dt), 'big') ^ int.from_bytes(seed, 'big') seed = des.encrypt(xor_result.to_bytes(8, 'big')) yield struct.unpack('Q', seed)[0]
seed = os.urandom(8) key = os.urandom(8)
generator = ANSI_X9_17(seed, key)
for _ in range(10): print(next(generator))
|
实验结果
1 2 3 4 5 6 7 8 9 10 11 12
| 9547376894222560941 14573295465363766103 4443221753975775752 166340040852663411 963240850516919363 5943390085879500067 2446485564448679013 13225102827631184018 16245113971492984339 12199582410726500214
Process finished with exit code 0
|
Author:
QUANQUAN
License:
Copyright (c) 2019 CC-BY-NC-4.0 LICENSE
Slogan:
Make the world MORE PERFECT !