IdentityShroud/IdentityShroud.Core/Contracts/IEncryptionService.cs
eelke 92b34bd0b5 Happy flow for creating realms works
But needs more validating...
2026-02-08 11:57:57 +01:00

7 lines
No EOL
150 B
C#

namespace IdentityShroud.Core.Contracts;
public interface IEncryptionService
{
byte[] Encrypt(byte[] plain);
byte[] Decrypt(byte[] cipher);
}