public class OpenBSDBCrypt
extends java.lang.Object
Constructor and Description |
---|
OpenBSDBCrypt() |
Modifier and Type | Method and Description |
---|---|
static boolean |
checkPassword(java.lang.String bcryptString,
char[] password)
Checks if a password corresponds to a 60 character Bcrypt String
|
static java.lang.String |
generate(char[] password,
byte[] salt,
int cost)
Creates a 60 character Bcrypt String, including
version, cost factor, salt and hash, separated by '$'
|
public static java.lang.String generate(char[] password, byte[] salt, int cost)
cost
- the cost factor, treated as an exponent of 2salt
- a 16 byte saltpassword
- the passwordpublic static boolean checkPassword(java.lang.String bcryptString, char[] password)
bcryptString
- a 60 character Bcrypt String, including
version, cost factor, salt and hash,
separated by '$'password
- the password as an array of chars