我正在学习python的随机模块.我知道它会生成伪随机数.其核心思想是使用高频时钟作为种子然后使用函数来产生“看起来像随机数”.
据我所知,甚至不可能在现实世界中产生真实的随机数.
但我知道Unix随机生成器已经引入了一些其他因素,如鼠标移动轨迹参数,IO响应时间,为其随机数生成器函数引入不确定性.通过它我们可以获得比普通伪随机数更好的随机数.预测起来要困难得多.
那么,有没有办法在python中我们可以产生这样一个随机数,或者可能导入一个好的第三方库?
最佳答案
随机模块的documentation有这样说:
原文链接:https://www.f2er.com/python/439754.htmlWarning: The pseudo-random generators of this module should not be used for security purposes. Use
os.urandom()
orSystemRandom
if you require a cryptographically secure pseudo-random number generator.