5 lines
88 B
Python
5 lines
88 B
Python
|
from cryptography.fernet import Fernet
|
||
|
|
||
|
key = Fernet.generate_key()
|
||
|
print(key.decode())
|