Ejemplo n.º 1
0
 byte[] IEncryptor.Decrypt(byte[] password, byte[] buffer)
 {
     return(AESCrypto.Decrypt(password, buffer));
 }
Ejemplo n.º 2
0
 string IEncryptor.Decrypt(string password, byte[] buffer, Encoding encodingType)
 {
     return(AESCrypto.Decrypt(password, buffer, encodingType));
 }
Ejemplo n.º 3
0
 byte[] IEncryptor.Decrypt(string password, string filePath, bool OverwriteFile)
 {
     return(AESCrypto.Decrypt(password, filePath, OverwriteFile));
 }
Ejemplo n.º 4
0
 byte[] IEncryptor.Decrypt(string password, byte[] buffer)
 {
     return(AESCrypto.Decrypt(Encoding.UTF8.GetBytes(password), buffer));
 }