namespace StopShopping.Services; /// /// 加解密服务 /// public interface ICipherService { /// /// 用户密码加密 /// /// 明文 /// string EncryptUserPassword(string input); }