Uses of Record Class
com.svenruppert.jsentinel.authentication.PasswordHash
Packages that use PasswordHash
-
Uses of PasswordHash in com.svenruppert.jsentinel.authentication
Methods in com.svenruppert.jsentinel.authentication that return PasswordHashModifier and TypeMethodDescriptiondefault PasswordHashPasswordHasher.hashTo(char[] rawPassword) Hashes the password and returns the parsedPasswordHash(algorithm + encoded bytes + parameters).default PasswordHashParses a wire-format hash into aPasswordHash.Methods in com.svenruppert.jsentinel.authentication with parameters of type PasswordHashModifier and TypeMethodDescriptiondefault booleanPasswordHasher.needsRehash(PasswordHash storedHash) Reports whetherstoredHashwas produced with parameters that differ from this hasher's current configuration.booleanPbkdf2PasswordHasher.needsRehash(PasswordHash storedHash) default StringPasswordHasher.serialize(PasswordHash hash) Inverse ofPasswordHasher.parse(String).Pbkdf2PasswordHasher.serialize(PasswordHash hash) default booleanPasswordHasher.verify(char[] rawPassword, PasswordHash storedHash) Verifies a candidate password against a typedPasswordHash.