- validFormat - Variable in class at.favre.lib.crypto.bcrypt.BCrypt.Result
-
If the given format was valid.
- verified - Variable in class at.favre.lib.crypto.bcrypt.BCrypt.Result
-
If the given password matches the hash
- verify(byte[], byte[]) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
- verify(char[], char[]) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
- verify(char[], String) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
- verify(byte[], BCrypt.HashData) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given raw byte arrays of salt, 23 byte bcrypt hash and password.
- verify(byte[], int, byte[], byte[]) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given raw byte arrays of salt, 23 byte bcrypt hash and password.
- verifyer() - Static method in class at.favre.lib.crypto.bcrypt.BCrypt
-
Creates a new instance of bcrypt verifier to verify a password against a given hash
- verifyStrict(byte[], byte[], BCrypt.Version) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given bcrypt hash, which includes salt and cost factor with given raw password requiring a specific
version.
- verifyStrict(char[], char[], BCrypt.Version) - Method in class at.favre.lib.crypto.bcrypt.BCrypt.Verifyer
-
Verify given bcrypt hash, which includes salt and cost factor with given raw password requiring a specific
version.
- version - Variable in class at.favre.lib.crypto.bcrypt.BCrypt.HashData
-
The used version
- Version(byte[], BCryptFormatter, BCryptParser) - Constructor for class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
Create a new version.
- VERSION_2A - Static variable in class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
$2a$
- VERSION_2B - Static variable in class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
$2b$ (2014/02)
- VERSION_2X - Static variable in class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
$2x$ (2011)
- VERSION_2Y - Static variable in class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
$2y$ (2011)
- versionIdentifier - Variable in class at.favre.lib.crypto.bcrypt.BCrypt.Version
-
Version identifier byte array, eg.{0x32, 0x61} for '2a'