circuitpython/ports/stm/boards/swan_r5/tests/urandom.py
2021-09-28 18:52:03 -07:00

11 lines
129 B
Python

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