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