Encrypt() public method

public Encrypt ( byte plainText, byte optionalEntropy, string DataDescription ) : IEnumerable
plainText byte
optionalEntropy byte
DataDescription string
return IEnumerable
コード例 #1
0
        public static string Encrypt(string text_password)
        {
            IEnumerable <byte> e = dp.Encrypt(GetBytes(text_password), null, "psw");

            return(GetHex(e));
        }