public static string EncryptString(string plainText) { Crypt crypt = new Crypt(); return crypt.EncryptToString(plainText); }
public static string DecryptString(string encryptedText) { Crypt crypt = new Crypt(); return crypt.DecryptToString(encryptedText); }