Ejemplo n.º 1
0
 //public void R5CryptEncrypt(Boolean IsEof,Byte Buf,int DataSize,int BufSize){ }
 public static bool R5CryptEncrypt(string PlainText, out string EncryptText)
 {
     EncryptText = aesCryptUtil.Encrypt(PlainText, aesCryptUtil.GetPassword());
     return(true);
 }