IdentityShroud/IdentityShroud.Core/Contracts/IDekEncryptionService.cs

11 lines
217 B
C#
Raw Normal View History

using IdentityShroud.Core.Security;
namespace IdentityShroud.Core.Contracts;
public interface IDekEncryptionService
{
EncryptedDek Encrypt(ReadOnlyMemory<byte> plain);
byte[] Decrypt(EncryptedDek input);
}