namespace xCommons.Interfaces { public interface IXCipher { string Encrypt(string plainText); string Decrypt(string cipherText); string EncryptFromBytes(byte[] textBytes); string DecryptFromBytes(byte[] cipherBytes); } }