init
This commit is contained in:
commit
ded4f4db26
43 changed files with 2052 additions and 0 deletions
7
Catalogger.Backend/Database/IEncryptionService.cs
Normal file
7
Catalogger.Backend/Database/IEncryptionService.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace Catalogger.Backend.Database;
|
||||
|
||||
public interface IEncryptionService
|
||||
{
|
||||
public byte[] Encrypt(string data);
|
||||
public string Decrypt(byte[] input);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue