本文整理匯總了Python中Crypto.pct_warnings.ClockRewindWarning方法的典型用法代碼示例。如果您正苦於以下問題:Python pct_warnings.ClockRewindWarning方法的具體用法?Python pct_warnings.ClockRewindWarning怎麽用?Python pct_warnings.ClockRewindWarning使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Crypto.pct_warnings
的用法示例。
在下文中一共展示了pct_warnings.ClockRewindWarning方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: random_data
# 需要導入模塊: from Crypto import pct_warnings [as 別名]
# 或者: from Crypto.pct_warnings import ClockRewindWarning [as 別名]
def random_data(self, bytes):
current_time = time.time()
if (self.last_reseed is not None and self.last_reseed > current_time): # Avoid float comparison to None to make Py3k happy
warnings.warn("Clock rewind detected. Resetting last_reseed.", ClockRewindWarning)
self.last_reseed = None
if (self.pools[0].length >= self.min_pool_size and
(self.last_reseed is None or
current_time > self.last_reseed + self.reseed_interval)):
self._reseed(current_time)
# The following should fail if we haven't seeded the pool yet.
return self.generator.pseudo_random_data(bytes)