Files
2024-05-30 15:40:13 +03:00

8 lines
238 B
C#

namespace Application.Services.Encryption;
public interface IEncryptionService
{
string? Sha256Algorithm(string? password);
public byte[] EncryptDocument(byte[] data);
public byte[] DecryptDocument(byte[] encryptedData);
}