| Modifier and Type | Field and Description |
|---|---|
BCrypt.HashData |
BCrypt.Result.details
The parts of the modular crypt format (salt, raw hash, cost factor, version)
|
| Modifier and Type | Method and Description |
|---|---|
BCrypt.HashData |
BCrypt.Hasher.hashRaw(int cost,
byte[] salt,
byte[] password)
Hashes given password with the OpenBSD bcrypt schema.
|
BCrypt.HashData |
BCryptParser.parse(byte[] bcryptHash)
Read and parse given bcrypt hash
|
BCrypt.HashData |
BCryptParser.Default.parse(byte[] bcryptHash) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
BCryptFormatter.createHashMessage(BCrypt.HashData hashData)
Create a message for the given raw hash data
|
byte[] |
BCryptFormatter.Default.createHashMessage(BCrypt.HashData hashData) |
BCrypt.Result |
BCrypt.Verifyer.verify(byte[] password,
BCrypt.HashData bcryptHashData)
Verify given raw byte arrays of salt, 23 byte bcrypt hash and password.
|
Copyright © 2018–2023. All rights reserved.