| Modifier and Type | Method and Description |
|---|---|
BCrypt.Result |
BCrypt.Verifyer.verify(byte[] password,
BCrypt.HashData bcryptHashData)
Verify given raw byte arrays of salt, 23 byte bcrypt hash and password.
|
BCrypt.Result |
BCrypt.Verifyer.verify(byte[] password,
byte[] bcryptHash)
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
|
BCrypt.Result |
BCrypt.Verifyer.verify(byte[] password,
int cost,
byte[] salt,
byte[] rawBcryptHash23Bytes)
Verify given raw byte arrays of salt, 23 byte bcrypt hash and password.
|
BCrypt.Result |
BCrypt.Verifyer.verify(char[] password,
char[] bcryptHash)
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
|
BCrypt.Result |
BCrypt.Verifyer.verify(char[] password,
String bcryptHash)
Verify given bcrypt hash, which includes salt and cost factor with given raw password.
|
BCrypt.Result |
BCrypt.Verifyer.verifyStrict(byte[] password,
byte[] bcryptHash,
BCrypt.Version expectedVersion)
Verify given bcrypt hash, which includes salt and cost factor with given raw password requiring a specific
version.
|
BCrypt.Result |
BCrypt.Verifyer.verifyStrict(char[] password,
char[] bcryptHash,
BCrypt.Version expectedVersion)
Verify given bcrypt hash, which includes salt and cost factor with given raw password requiring a specific
version.
|
Copyright © 2018. All rights reserved.