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
Seems kind of basic, but the hash is corrupt if a salt isn't supplied.
Argon2.Hash(new Argon2Config { Password = Encoding.UTF8.GetBytes("test") }) // $argon2id$v=19$m=65536,t=3,p=4
Argon2.Hash(new Argon2Config { Password = Encoding.UTF8.GetBytes("test"), Salt = [0, 0, 0, 0, 0, 0, 0, 0] }) // $argon2id$v=19$m=65536,t=3,p=4$AAAAAAAAAAA$997Y916TCd1Fc7bOyGM7ZVs9tnPdyxDLqrm9sYAp0P8
The text was updated successfully, but these errors were encountered:
Yep, I get this too
Sorry, something went wrong.
No branches or pull requests
Seems kind of basic, but the hash is corrupt if a salt isn't supplied.
The text was updated successfully, but these errors were encountered: