-
Notifications
You must be signed in to change notification settings - Fork 0
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
i get wrong secret #1
Comments
|
This is confusing yespower vs. yescrypt. What @mraksoll4 implemented here (thanks!) is yespower 0.5 (similar to yescrypt 0.5, which was a temporary revision during the Password Hashing Competition) and yespower 1.0. What @tourer-zc needs is proper yescrypt 1.0+ as implemented in https://github.com/openwall/yescrypt-go https://pkg.go.dev/github.com/openwall/yescrypt-go, which also has proper parameter decoding and proper base-64 crypt encoding (different from the usual base64). In other words, what cryptocurrencies call yescrypt (retroactively named yespower 0.5) isn't the same as what we call yescrypt in password security context (yescrypt 1.0 release and on). |
i have an encrypted data $y$j9T$nUQ1haLSJODMAlSVUV5NGUw.$tLzBKbQ6ujjnayVUk2/GG1OjhWMqoVJ/05fXYhZH0QD, the real password is
Hillstone!1
. But i can not get the encrypted data with the follwing code:Could you tell me what's wrong in my code?
The text was updated successfully, but these errors were encountered: