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