在 VHDL 中生成随机值的替代算法?
Alternative algorithms to generate random values in VHDL?
我一直在使用根据本原多项式实现的 LFSR,但如您所知,LFSR 会以重复顺序产生许多可能的值,这意味着它不是真正随机的!
继续使用 LFSR 并确保它产生真正随机值的一种解决方案是使用某种动态方式读取 LFSR 输出的值,但我不知道如何在硬件中执行此操作( VHDL)!
因此,我正在寻找一种真正产生定义长度的随机意外重复值的替代方法,即。 10 位
有什么建议吗?我打算在 VHDL 中实现它们!
生成真随机数实际上是一个独立的研究领域。基本上你需要通过某种传感器收集一些看似随机的自然现象的信息。目前的硬件和软件是确定性的,因此具有相同的输入将始终导致相同的输出。收集外部传感器信息可以 "randomize" 您的输入。
这里有一些阅读:https://en.wikipedia.org/wiki/Pseudorandom_number_generator
此外,这是在一篇名为 Random Number Generated from White Noise of Webcam 的同行评审期刊文章中使用外部传感器输入的实际示例,其中包含摘要中的一小部分信息:
Random number generators play a very import role in modern cryptography, especially in personal information security. For example, to generate random number from white noise of webcam is a new approach for personal device. Through our algorithms, 91% IPcam generating sequences pass at least four statistical tests, 87% pass all five ones has been approved. Compared with webcam and video respectively, on the contrary, the possibility for both generating sequences to pass all five statistical tests is roughly 80%. The result implies improvement by algorithm on personal devices such as laptop, for instance, is necessary to generate qualified random number to protect private information.
我一直在使用根据本原多项式实现的 LFSR,但如您所知,LFSR 会以重复顺序产生许多可能的值,这意味着它不是真正随机的!
继续使用 LFSR 并确保它产生真正随机值的一种解决方案是使用某种动态方式读取 LFSR 输出的值,但我不知道如何在硬件中执行此操作( VHDL)!
因此,我正在寻找一种真正产生定义长度的随机意外重复值的替代方法,即。 10 位
有什么建议吗?我打算在 VHDL 中实现它们!
生成真随机数实际上是一个独立的研究领域。基本上你需要通过某种传感器收集一些看似随机的自然现象的信息。目前的硬件和软件是确定性的,因此具有相同的输入将始终导致相同的输出。收集外部传感器信息可以 "randomize" 您的输入。
这里有一些阅读:https://en.wikipedia.org/wiki/Pseudorandom_number_generator
此外,这是在一篇名为 Random Number Generated from White Noise of Webcam 的同行评审期刊文章中使用外部传感器输入的实际示例,其中包含摘要中的一小部分信息:
Random number generators play a very import role in modern cryptography, especially in personal information security. For example, to generate random number from white noise of webcam is a new approach for personal device. Through our algorithms, 91% IPcam generating sequences pass at least four statistical tests, 87% pass all five ones has been approved. Compared with webcam and video respectively, on the contrary, the possibility for both generating sequences to pass all five statistical tests is roughly 80%. The result implies improvement by algorithm on personal devices such as laptop, for instance, is necessary to generate qualified random number to protect private information.