當前位置: 首頁>>代碼示例>>Python>>正文


Python pct_warnings.ClockRewindWarning方法代碼示例

本文整理匯總了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) 
開發者ID:adde88,項目名稱:hostapd-mana,代碼行數:13,代碼來源:FortunaAccumulator.py


注:本文中的Crypto.pct_warnings.ClockRewindWarning方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。