namespace IdentityShroud.Core.Contracts; public interface IEncryptionService { byte[] Encrypt(byte[] plain); byte[] Decrypt(ReadOnlyMemory cipher); }