Difference between revisions of "STM32 Random Number Generator"

From Stm32World Wiki
Jump to navigation Jump to search
Line 14: Line 14:
 
dd if=/dev/random of=tmp/random.dat bs=10K count=1000K status=progress
 
dd if=/dev/random of=tmp/random.dat bs=10K count=1000K status=progress
 
</pre>
 
</pre>
 +
 +
== Miscellaneous Links ==
 +
 +
* [https://en.wikipedia.org/wiki/Diehard_tests Wikipedia article on Diehard Tests]

Revision as of 04:51, 23 September 2024

Testing

To establish a baseline the random generators of the Linux kernel was tested with dieharder

Linux /dev/urandom

dd if=/dev/urandom of=tmp/urandom.dat bs=10K count=1000K status=progress

Linux /dev/random

dd if=/dev/random of=tmp/random.dat bs=10K count=1000K status=progress

Miscellaneous Links