This commit is contained in:
2025-02-26 15:15:39 +01:00
parent 7228d5fae9
commit 2a09fed57a
12 changed files with 293 additions and 29 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)