2026-02-08 11:57:57 +01:00
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
|
|
|
|
|
|
public interface IEncryptionService
|
|
|
|
|
{
|
2026-02-24 06:32:58 +01:00
|
|
|
EncryptedValue Encrypt(ReadOnlyMemory<byte> plain);
|
|
|
|
|
byte[] Decrypt(EncryptedValue input);
|
2026-02-08 11:57:57 +01:00
|
|
|
}
|