Beispiel #1
0
        public string DecryptData(string cipherText)
        {
            var cipherBytes = Conversion.BytesFromBase64(cipherText);

            return(Conversion.BytesToString(DecryptData(cipherBytes)));
        }