IdentityShroud/IdentityShroud.Core/Contracts/IEncryptionService.cs

7 lines
150 B
C#
Raw Permalink Normal View History

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