Uses of Class
com.inesm.KeyManager.exceptions.HashingErrorException
Packages that use HashingErrorException
-
Uses of HashingErrorException in com.inesm.KeyManager.controller
Methods in com.inesm.KeyManager.controller that throw HashingErrorExceptionModifier and TypeMethodDescriptionUserController.createUser(javax.servlet.http.HttpServletRequest request) Creates a user in the station.UserController.updateSelfUserPassword(javax.servlet.http.HttpServletRequest request) Updates the current user's password in the station.UserController.updateUserPassword(javax.servlet.http.HttpServletRequest request) Updates a user's password in the station. -
Uses of HashingErrorException in com.inesm.KeyManager.services
Methods in com.inesm.KeyManager.services that throw HashingErrorExceptionModifier and TypeMethodDescriptionvoidUserManager.changePassword(User user) Updates a user password in the database.UserManager.createUser(User user) Creates a user in the database.CryptographyService.hashPassword(String password) Hashes a password, using the algorithm "PBKDF2WithHmacSHA512".booleanCryptographyService.validatePassword(String storedHash, String password) Validates the password against a hash.