Encryption: Add debugger step through attributes

This commit is contained in:
Jonathan Jenne 2022-01-10 15:47:30 +01:00
parent 9228fcfbbb
commit fa06f3b650

View File

@ -31,6 +31,7 @@ Public Class EncryptionLegacy
Return hash Return hash
End Function End Function
<DebuggerStepThrough>
Public Function EncryptData(ByVal plaintext As String) As String Public Function EncryptData(ByVal plaintext As String) As String
Try Try
' Convert the plaintext string to a byte array. ' Convert the plaintext string to a byte array.
@ -56,6 +57,7 @@ Public Class EncryptionLegacy
End Function End Function
'Entschlüsselt die Zeichenfolge 'Entschlüsselt die Zeichenfolge
<DebuggerStepThrough>
Public Function DecryptData(ByVal EncryptedText As String) As String Public Function DecryptData(ByVal EncryptedText As String) As String
Try Try
' Convert the encrypted text string to a byte array. ' Convert the encrypted text string to a byte array.