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