8 lines
238 B
C#
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);
|
|
} |