Exemplo n.º 1
0
        public static string Decrypt(string encryptedValue)
        {
            Check.Argument.IsNotNullOrEmpty(encryptedValue, "encryptedValue");

            return(InternalCryptography.Decrypt(encryptedValue));
        }
Exemplo n.º 2
0
 public static string ComputeHash(byte[] value)
 {
     return(InternalCryptography.ComputeHash(value));
 }
Exemplo n.º 3
0
        public static string Encrypt(string value)
        {
            Check.Argument.IsNotNullOrEmpty(value, "value");

            return(InternalCryptography.Encrypt(value));
        }