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