Configuration menu entry

This commit is contained in:
2025-02-26 09:12:34 +01:00
parent b468c3d078
commit 0f253c518d
7 changed files with 169 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ class Vermasseln:
return storable_data
def entschluesseln(self, data, local= True):
def entschluesseln(self, data, local = True):
try:
data_list = data.split(".")
encoded_data = [b64decode(x) for x in data_list]
@@ -37,7 +37,7 @@ class Vermasseln:
return decrypted_data
def __vermasslungsKobold(self, local= True):
def __vermasslungsKobold(self, local = True):
key = platform.processor().encode("utf-8") if local else b"(==daniishtverhaftetwegensexy#)"
key = key[0:31]
hash_key = SHA256.new(key)