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