Styling test

This commit is contained in:
2024-11-04 15:51:51 +01:00
parent fcdcf3b0d9
commit 64d4fa3305
9 changed files with 105 additions and 16 deletions

View File

@@ -23,6 +23,7 @@ class Vermasseln:
cipher = self.__vermasslungsKobold()
decrypted_data = cipher.decrypt_and_verify(encoded_data[0], encoded_data[1])
decrypted_data = decrypted_data.decode("utf-8")
return decrypted_data
def __vermasslungsKobold(self):
@@ -34,7 +35,6 @@ class Vermasseln:
cipher = AES.new(hashed, AES.MODE_SIV, nonce = nonce)
return cipher
print(Vermasseln().oscarVermasseln("irgendeinenText"))