namespace Application.Interfaces; public interface IEncryptionService { Task EncryptAsync(string plainText); Task Decrypt(string encryptedText); }