优化验证码发送
This commit is contained in:
parent
daf2427c4a
commit
3d2ad88116
@ -94,7 +94,7 @@ public class LoginServiceImpl implements LoginService {
|
||||
|
||||
@Override
|
||||
public SmsResponse sendLoginCode(String phone) {
|
||||
int smsCode = RandomUtils.nextInt(10000, 99999);
|
||||
int smsCode = RandomUtils.nextInt(100000, 999999);
|
||||
String code = redisTemplateHandler.get(CommonRedisKeyConstant.SMS_LOGIN + phone);
|
||||
int count = 1;
|
||||
if (StringUtils.hasLength(code)) {
|
||||
|
@ -190,6 +190,7 @@ public class SM4 {
|
||||
public static void main(String[] args) throws Exception {
|
||||
String iv = SM4.generateKey();
|
||||
System.out.println(iv);
|
||||
System.out.println("加密:---------");
|
||||
String v = SM4.encrypt(iv, """
|
||||
晚日照空矶,采莲承晚晖。
|
||||
风起湖难渡,莲多采未稀。
|
||||
@ -199,7 +200,9 @@ public class SM4 {
|
||||
System.out.println(v);
|
||||
String digest = SM3.digest(v);
|
||||
System.out.println(digest);
|
||||
System.out.println("解密:---------");
|
||||
System.out.println(SM4.decrypt(iv, v, iv));
|
||||
System.out.println("解密:---------");
|
||||
System.out.println(SM4.decrypt("864669EB9E57E15C923E1003CBEA8872", "6a05d74bda1f2a41c0b47605b06ef638", "fedcba98765432100123456789abcdef"));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user