add readme

This commit is contained in:
2025-12-09 09:53:55 +01:00
parent 0a7b029141
commit f6f2d20eb8
2 changed files with 34 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ from cryptography.fernet import Fernet
from cryptography.hazmat.primitives.kdf.scrypt import Scrypt
import base64
with open("key.txt", "rb") as key_file:
with open("pwd_key.txt", "rb") as key_file:
key = key_file.read().strip()
f = Fernet(key)