We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f96279b commit fbb4785Copy full SHA for fbb4785
base/src/main/java/com/tinyengine/it/login/controller/LoginController.java
@@ -209,12 +209,12 @@ public Result<ValidationResult> validateToken(@RequestParam String token) {
209
}
210
211
/**
212
- * 认证
213
- * @param salt
214
- * @param password
215
- * @param userPassword
+ * verify password
+ * @param salt salt
+ * @param password password
+ * @param userPassword userPassword
216
* @return boolean
217
- * @throws Exception
+ * @throws Exception exception
218
*/
219
private boolean authenticate(String salt, String password, String userPassword) throws Exception {
220
return SM3PasswordUtil.verifyPassword(password, userPassword, salt);
0 commit comments