11 lines
129 B
Python
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()
|