This commit is contained in:
2025-02-26 15:09:28 +01:00
parent 7228d5fae9
commit f0cde5ec20
12 changed files with 287 additions and 75 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)