Changed structure of referencing data

This commit is contained in:
2022-06-19 13:22:05 +01:00
parent 76fa1e1dd9
commit ac02f4dee1
8 changed files with 25 additions and 16 deletions

View File

@@ -1,7 +1,10 @@
from ..data import data
from flask import current_app as app
from cryptography.fernet import Fernet
from pathlib import Path
def load_key():
data = Path(app.config.get('DATA'))
with open(f'./{data}/.encryption.key', 'rb') as keyfile: return keyfile.read()
def decrypt(input:str):