base**exp
@base.exp
·
introduction to cryptography; demo 1
This first demo reproduces the minimal example from https://cryptography.io/en/latest/fernet/ Here is the code: from cryptography.fernet import Fernet key = Fernet.generate_key() f = Fernet(key) toke…