本文整理匯總了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)