IdentityShroud/IdentityShroud.Core/Contracts/IDekEncryptionService.cs

11 lines
215 B
C#
Raw Permalink Normal View History

using IdentityShroud.Core.Security;
namespace IdentityShroud.Core.Contracts;
public interface IDekEncryptionService
{
2026-02-26 20:39:48 +01:00
EncryptedDek Encrypt(ReadOnlySpan<byte> plain);
byte[] Decrypt(EncryptedDek input);
}