13 lines
No EOL
283 B
C#
13 lines
No EOL
283 B
C#
using IdentityShroud.Core.Security;
|
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
|
|
|
|
public interface IDekEncryptionService
|
|
{
|
|
EncryptedDek Encrypt(ReadOnlySpan<byte> plain);
|
|
|
|
void Decrypt(EncryptedDek input, Span<byte> output);
|
|
int GetDecryptedSize(EncryptedDek input);
|
|
} |