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