✨
This commit is contained in:
14
StopShopping.Services/ICipherService.cs
Normal file
14
StopShopping.Services/ICipherService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace StopShopping.Services;
|
||||
|
||||
/// <summary>
|
||||
/// 加解密服务
|
||||
/// </summary>
|
||||
public interface ICipherService
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户密码加密
|
||||
/// </summary>
|
||||
/// <param name="input">明文</param>
|
||||
/// <returns></returns>
|
||||
string EncryptUserPassword(string input);
|
||||
}
|
||||
Reference in New Issue
Block a user