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