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