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
>>> import pysodium >>> pysodium.crypto_generichash( 'salt0') == pysodium.crypto_generichash( 'salt1') True >>> pysodium.crypto_generichash(b'salt0') == pysodium.crypto_generichash(b'salt1') False >>>
observe that only the type of the salt[01] input changed from str to byte, and only for bytes it gives the correct output.
salt[01]
may hastur haunt the dreams of those responsible for py3 string "handling"
The text was updated successfully, but these errors were encountered:
[fix] #93 py3 f*cking up strings
06fb17f
fixed in 06fb17f
Sorry, something went wrong.
No branches or pull requests
observe that only the type of the
salt[01]
input changed from str to byte, and only for bytes it gives the correct output.may hastur haunt the dreams of those responsible for py3 string "handling"
The text was updated successfully, but these errors were encountered: