From fa06f3b650b790e2d8001d9a0cce52fa2403b6c1 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 10 Jan 2022 15:47:30 +0100 Subject: [PATCH] Encryption: Add debugger step through attributes --- Encryption/EncryptionLegacy.vb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Encryption/EncryptionLegacy.vb b/Encryption/EncryptionLegacy.vb index 582ee55c..fd578da6 100644 --- a/Encryption/EncryptionLegacy.vb +++ b/Encryption/EncryptionLegacy.vb @@ -31,6 +31,7 @@ Public Class EncryptionLegacy Return hash End Function + Public Function EncryptData(ByVal plaintext As String) As String Try ' Convert the plaintext string to a byte array. @@ -56,6 +57,7 @@ Public Class EncryptionLegacy End Function 'Entschlüsselt die Zeichenfolge + Public Function DecryptData(ByVal EncryptedText As String) As String Try ' Convert the encrypted text string to a byte array.