byte[] IEncryptor.Decrypt(byte[] password, byte[] buffer) { return(DESCrypto.Decrypt(password, buffer)); }
byte[] IEncryptor.Decrypt(string password, string filePath, bool OverwriteFile) { return(DESCrypto.Decrypt(password, filePath, OverwriteFile)); }
string IEncryptor.Decrypt(string password, byte[] buffer, Encoding encodingType) { return(DESCrypto.Decrypt(password, buffer, encodingType)); }
byte[] IEncryptor.Decrypt(string password, byte[] buffer) { return(DESCrypto.Decrypt(Encoding.UTF8.GetBytes(password), buffer)); }
void IEncryptor.Encrypt(string password, string filePath) { DESCrypto.Encrypt(password, filePath); }
byte[] IEncryptor.Encrypt(string password, string text, Encoding encodingType) { return(DESCrypto.Encrypt(password, text, encodingType)); }