Monthly Archives: May 2019

Hardware Random Number Generator PRG320

/dev/urandom/ is a pseudo random number generator used by for Fedora and other linux-based operating systems. This little Python snippet will get you some data: import binascii import os data = os.urandom(10) print(data) print(str(binascii.hexlify(by...

Posted in Fedora, Security | Leave a comment