Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import os
def main():
print("Random number test")
r = os.urandom(32)
print(f"urandom TRNG string is {r}")
main()