We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Bcrypt hashes can be prefixed by $2b$. Source: wikipedia
$2b$
For example hashes like $2b$10$Ty6z.p2lAZjVZU/wFG3YT.B0R8rTak4YkSEECD2gupfSFKjvQwc16 are not recognized as bcrypt hash by hashid.
$2b$10$Ty6z.p2lAZjVZU/wFG3YT.B0R8rTak4YkSEECD2gupfSFKjvQwc16
Regex can be fixed by adding the b inside.
b
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Bcrypt hashes can be prefixed by
$2b$
. Source: wikipediaFor example hashes like
$2b$10$Ty6z.p2lAZjVZU/wFG3YT.B0R8rTak4YkSEECD2gupfSFKjvQwc16
are not recognized as bcrypt hash by hashid.Regex can be fixed by adding the
b
inside.The text was updated successfully, but these errors were encountered: