2026-02-08 11:57:57 +01:00
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
|
|
|
|
|
|
public interface IEncryptionService
|
|
|
|
|
{
|
2026-02-22 19:11:17 +01:00
|
|
|
byte[] Encrypt(ReadOnlyMemory<byte> plain);
|
2026-02-21 20:15:46 +01:00
|
|
|
byte[] Decrypt(ReadOnlyMemory<byte> cipher);
|
2026-02-08 11:57:57 +01:00
|
|
|
}
|