using System.Security.Cryptography;
public static void Main()
Console.WriteLine(Decrypt("Ua3LyPFM175GN8D3+tqwLA=="));
Console.WriteLine(Decrypt("k+iUoOvQYG98PuhhRC7/rg=="));
public static string Decrypt(string cryptedString)
if (string.IsNullOrEmpty(cryptedString))
DESCryptoServiceProvider descryptoServiceProvider = new DESCryptoServiceProvider();
result = new StreamReader(new CryptoStream(new MemoryStream(Convert.FromBase64String(cryptedString)), descryptoServiceProvider.CreateDecryptor(_rgbKey, _rgbIV), CryptoStreamMode.Read)).ReadToEnd();
private static byte[] _rgbKey = Encoding.ASCII.GetBytes("7ly6UznJ");
private static byte[] _rgbIV = Encoding.ASCII.GetBytes("XuVUm5fR");