7 lines
No EOL
178 B
C#
7 lines
No EOL
178 B
C#
namespace IdentityShroud.Core.Contracts;
|
|
|
|
public interface IEncryptionService
|
|
{
|
|
byte[] Encrypt(ReadOnlyMemory<byte> plain);
|
|
byte[] Decrypt(ReadOnlyMemory<byte> cipher);
|
|
} |