本文整理汇总了Python中Crypto.Random.OSRNG.new方法的典型用法代码示例。如果您正苦于以下问题:Python OSRNG.new方法的具体用法?Python OSRNG.new怎么用?Python OSRNG.new使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crypto.Random.OSRNG
的用法示例。
在下文中一共展示了OSRNG.new方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from Crypto.Random import OSRNG [as 别名]
# 或者: from Crypto.Random.OSRNG import new [as 别名]
def __init__(self, accumulator):
self._osrng = OSRNG.new()
self._osrng_es = _EntropySource(accumulator, 255)
self._time_es = _EntropySource(accumulator, 254)
self._clock_es = _EntropySource(accumulator, 253)
示例2: new
# 需要导入模块: from Crypto.Random import OSRNG [as 别名]
# 或者: from Crypto.Random.OSRNG import new [as 别名]
def new():
return RNGFile(_get_singleton())
示例3: runTest
# 需要导入模块: from Crypto.Random import OSRNG [as 别名]
# 或者: from Crypto.Random.OSRNG import new [as 别名]
def runTest(self):
"""Crypto.Random.OSRNG.new()"""
# Import the OSRNG module and try to use it
import Crypto.Random.OSRNG
randobj = Crypto.Random.OSRNG.new()
x = randobj.read(16)
y = randobj.read(16)
self.assertNotEqual(x, y)
示例4: __init__
# 需要导入模块: from Crypto.Random import OSRNG [as 别名]
# 或者: from Crypto.Random.OSRNG import new [as 别名]
def __init__(self, algorithm, mode, key_size):
self.algorithm = algorithm
self.mode = mode
self.key_size = key_size
self._session_key = RNG.new().read(self.key_size)
self._iv = RNG.new().read(self.block_size)
self._cipher = Cipher.AES.new(self._session_key, mode, self._iv)