IdentityShroud/IdentityShroud.Core/Contracts/IEncryptionService.cs

7 lines
164 B
C#
Raw Normal View History

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