namespace DigitalData.MessagingService.Application.Common.Interfaces; /// /// Encryption service interface for password encryption. /// public interface IEncryptionService { string Encrypt(string plainText); string Decrypt(string cipherText); }