public string Decrypt(string encryptedText) { return(Encrypter.Decrypt(encryptedText, GetKey())); }
public string Encrypt(string textToEncrypt) { return(Encrypter.Encrypt(textToEncrypt, GetKey())); }