-
-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
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
How to verify an Argon2 Hash? #7
Comments
Hi! There's no way to do it with the current setup. |
@antelle - Is there any chance of seeing plain old JavaScript, or WASM support for hash verification in this repo without forking? Seems like the last missing piece to a perfect, browser-friendly Argon2 implementation. |
Added argon2.verify({ pass: 'password', encoded: 'enc-hash' })
.then(() => console.log('OK'))
.catch(e => console.error(e.message, e.code)) |
If all my Github issues were resolved as quickly as the ones in this repo I'd be a year ahead of schedule! Thank you @antelle! |
How do you verify an Argon2 Hash with this library in the browser?
The text was updated successfully, but these errors were encountered: