Files
StopShopping/StopShopping.Services/ICipherService.cs
2026-03-25 14:55:34 +08:00

15 lines
300 B
C#

namespace StopShopping.Services;
/// <summary>
/// 加解密服务
/// </summary>
public interface ICipherService
{
/// <summary>
/// 用户密码加密
/// </summary>
/// <param name="input">明文</param>
/// <returns></returns>
string EncryptUserPassword(string input);
}