Skip to content

Commit fbb4785

Browse files
committed
fix: after AI review update
1 parent f96279b commit fbb4785

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

base/src/main/java/com/tinyengine/it/login/controller/LoginController.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,12 @@ public Result<ValidationResult> validateToken(@RequestParam String token) {
209209
}
210210

211211
/**
212-
* 认证
213-
* @param salt
214-
* @param password
215-
* @param userPassword
212+
* verify password
213+
* @param salt salt
214+
* @param password password
215+
* @param userPassword userPassword
216216
* @return boolean
217-
* @throws Exception
217+
* @throws Exception exception
218218
*/
219219
private boolean authenticate(String salt, String password, String userPassword) throws Exception {
220220
return SM3PasswordUtil.verifyPassword(password, userPassword, salt);

0 commit comments

Comments
 (0)