IdentityShroud/IdentityShroud.Core/Contracts/IDataEncryptionService.cs
2026-02-26 20:41:59 +01:00

9 lines
No EOL
218 B
C#

using IdentityShroud.Core.Security;
namespace IdentityShroud.Core.Contracts;
public interface IDataEncryptionService
{
EncryptedValue Encrypt(ReadOnlySpan<byte> plain);
byte[] Decrypt(EncryptedValue input);
}