Fernet Encryption in Python
We will be using python cryptography library
install cryptography library using pip install cryptography
from cryptography.fernet import Fernet
KEY = "" # Fernet compatible key or;
# you can generate key using Fernet.generate_key()
CIP...
shrwn.com.np1 min read