Skip to content
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

Use raw byte array as input of sha1 #1058

Open
ArthurAttout opened this issue Nov 29, 2023 · 0 comments
Open

Use raw byte array as input of sha1 #1058

ArthurAttout opened this issue Nov 29, 2023 · 0 comments

Comments

@ArthurAttout
Copy link

I cannot figure out any way to feed straight byte arrays to 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 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant