mirror of
https://github.com/Viren070/AIOStremio.git
synced 2025-12-01 23:24:19 +01:00
6 lines
108 B
Python
6 lines
108 B
Python
from cryptography.fernet import Fernet
|
|
|
|
key = Fernet.generate_key()
|
|
|
|
print("Encryption key:", key.decode())
|