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