5 lines
135 B
Python
5 lines
135 B
Python
#!/bin/env python3
|
|
from cryptography.fernet import Fernet
|
|
|
|
if __name__ == '__main__':
|
|
print(Fernet.generate_key().decode("UTF-8"))
|