利用Cryptography函式庫進行密碼學實作
pip install cryptography
from cryptography.fernet import Fernet
key = Fernet.generate_key()
cipher_suite = Fernet(key)
#加密
cipher_msg = cipher_suite.encrypt( b"carpe diem")
#解密
plain_msg = cipher_suite.decrypt(cipher_msg)
print(plain_msg)