登录接口功能rsa加密实现

This commit is contained in:
xiongfeng
2022-07-04 16:14:00 +08:00
parent 6fabbcacd2
commit dbd720b302
16 changed files with 262 additions and 94 deletions

View File

@@ -1,5 +1,7 @@
package cn.xf.basedemo.service;
import cn.xf.basedemo.model.res.LoginInfoRes;
/**
* @program: xf-boot-base
* @ClassName UserService
@@ -9,5 +11,5 @@ package cn.xf.basedemo.service;
**/
public interface UserService {
String login(String encryptedData);
String login(LoginInfoRes res);
}