circuitpython/ports/stm/boards/swan_r5/tests/urandom.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
129 B
Python
Raw Normal View History

import os
def main():
print("Random number test")
r = os.urandom(32)
print(f"urandom TRNG string is {r}")
main()