public static string StudyDecrypt(string cryptograph) { return(CryptographyHelpers.Decrypt(_key, _salt, cryptograph)); }
public static string StudyEncrypt(string identity) { return(CryptographyHelpers.Encrypt(_key, _salt, identity)); }