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
I cannot figure out any way to feed straight byte arrays to sha1.
sha1
My understanding is that those two lines should return identical results
forge.md.sha1.create().update('hello', 'utf8').digest().toHex()
forge.md.sha1.create().update([104,101,108,108,111]).digest().toHex()
ASCII encoding of hello is [104, 101, 108, 108, 111]. How can I feed this raw byte array directly into sha1 and make it understand it as such ?
hello
[104, 101, 108, 108, 111]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I cannot figure out any way to feed straight byte arrays to
sha1
.My understanding is that those two lines should return identical results
ASCII encoding of
hello
is[104, 101, 108, 108, 111]
. How can I feed this raw byte array directly intosha1
and make it understand it as such ?The text was updated successfully, but these errors were encountered: