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