11 lines
No EOL
217 B
C#
11 lines
No EOL
217 B
C#
using IdentityShroud.Core.Security;
|
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
|
|
|
|
public interface IDekEncryptionService
|
|
{
|
|
EncryptedDek Encrypt(ReadOnlyMemory<byte> plain);
|
|
byte[] Decrypt(EncryptedDek input);
|
|
} |