7 lines
160 B
C#
7 lines
160 B
C#
|
|
namespace Catalogger.Backend.Database;
|
||
|
|
|
||
|
|
public interface IEncryptionService
|
||
|
|
{
|
||
|
|
public byte[] Encrypt(string data);
|
||
|
|
public string Decrypt(byte[] input);
|
||
|
|
}
|