Problems with database access and subdirectories still
This commit is contained in:
2022-06-11 13:26:50 +01:00
parent 6992a75855
commit b27016aaf4
5 changed files with 167 additions and 4 deletions

View File

@ -0,0 +1,19 @@
from ..data import data
from cryptography.fernet import Fernet
def load_key():
with open(f'./{data}/.encryption.key', 'rb') as keyfile: return keyfile.read()
def decrypt(input:str):
encryption_key = load_key()
fernet = Fernet(encryption_key)
input = input.encode()
output = fernet.decrypt(input)
return output.decode()
def encrypt(input:str):
encryption_key = load_key()
fernet = Fernet(encryption_key)
input = input.encode()
output = fernet.encrypt(input)
return output.decode()