public static string Decrypt(this string encryptedstring) { return(StringCipher.Decrypt(encryptedstring, Constants.EncryptionKey)); }
public static string DecryptKey(this string key) { return(StringCipher.Decrypt(key, Constants.DefaultEncryptionKey)); }
public static string Encrypt(this string plaintext) { return(StringCipher.Encrypt(plaintext, Constants.EncryptionKey)); }