Decrypt() public method

public Decrypt ( byte cipherText, byte optionalEntropy, string DataDescription ) : byte[]
cipherText byte
optionalEntropy byte
DataDescription string
return byte[]
コード例 #1
0
 public static string Decrypt(string enc_password)
 {
     byte[] b = ToByteArray(enc_password);
     byte[] d = dp.Decrypt(b, null, "psw");
     return(GetString(d));
 }