sample_python_cryptography.py 83 B

123
  1. from cryptography.fernet import Fernet
  2. key = Fernet.generate_key()
  3. f = Fernet(key)