MatrixGPT/new-fernet-key.py

5 lines
88 B
Python

from cryptography.fernet import Fernet
key = Fernet.generate_key()
print(key.decode())