debug秘钥

This commit is contained in:
墨大叔 2024-07-18 18:52:12 +08:00
parent 49baa39cd1
commit b3eb9b8313

View File

@ -214,7 +214,7 @@ public class AccessServiceImpl implements AccessService
String secret = SecurityUtils.genSecret(64);
Access access = new Access();
access.setAccessId(accessId);
access.setAccessSecret(secret);
access.setAccessSecret(SecurityUtils.encryptPassword(secret));
int update = accessMapper.updateAccess(access);
ServiceUtil.assertion(update != 1, "重置秘钥失败");