Class BcryptUtil
java.lang.Object
io.quarkus.elytron.security.common.BcryptUtil
Utility class used to produce bcrypt hashes using the Modular Crypt Format.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringbcryptHash(String password) Produces a Modular Crypt Format bcrypt hash of the given password, using a generated salt and 10 iterations.static StringbcryptHash(String password, int iterationCount) Produces a Modular Crypt Format bcrypt hash of the given password, using a generated salt and the specified iteration count.static StringbcryptHash(String password, int iterationCount, byte[] salt) Produces a Modular Crypt Format bcrypt hash of the given password, using the specified salt and the specified iteration count.static booleanMatches a plain text string against an existing Modular Crypt Format bcrypt hash
-
Constructor Details
-
BcryptUtil
public BcryptUtil()
-
-
Method Details
-
bcryptHash
Produces a Modular Crypt Format bcrypt hash of the given password, using a generated salt and 10 iterations.- Parameters:
password- the password to hash- Returns:
- the Modular Crypt Format bcrypt hash of the given password
- Throws:
NullPointerException- if the password is null
-
bcryptHash
Produces a Modular Crypt Format bcrypt hash of the given password, using a generated salt and the specified iteration count.- Parameters:
password- the password to hashiterationCount- the number of iterations to use while hashing- Returns:
- the Modular Crypt Format bcrypt hash of the given password
- Throws:
NullPointerException- if the password is nullIllegalArgumentException- if the iterationCount parameter is negative or zero
-
bcryptHash
Produces a Modular Crypt Format bcrypt hash of the given password, using the specified salt and the specified iteration count.- Parameters:
password- the password to hashiterationCount- the number of iterations to use while hashingsalt- the salt to use while hashing- Returns:
- the Modular Crypt Format bcrypt hash of the given password
- Throws:
NullPointerException- if the password or salt are nullIllegalArgumentException- if the iterationCount parameter is negative or zero, or if the salt length is not equal to 16
-
matches
Matches a plain text string against an existing Modular Crypt Format bcrypt hash- Parameters:
plainText- the plain text string to checkpasswordHash- the Modular Crypt Format bcrypt hash to compare against- Returns:
- the boolean result of whether the plain text matches the decoded Modular Crypt Format bcrypt hash
- Throws:
NullPointerException- if the plainText password or passwordHash is null
-