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

fix(node compat): shake-128, shake-256 aliases for shake128 and shake256 hash algorithms #28451

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

lilnasy
Copy link

@lilnasy lilnasy commented Mar 10, 2025

@CLAassistant
Copy link

CLAassistant commented Mar 10, 2025

CLA assistant check
All committers have signed the CLA.

Copy link
Contributor

@marvinhagemeister marvinhagemeister left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

EDIT: Dismissed my review. Looks like somewhere else the aliases need to be wired up too. I'll leave it to @littledivy

@lilnasy
Copy link
Author

lilnasy commented Mar 12, 2025

The tests were failing because "shake-128" and "shake-256" were being used as the digest algorithms for testing crypto.pbkdf2. They are not supported for that, not even in Node.js, which is why the tests excluded "shake128" and "shake256" (non-hyphenated) from crypto.getHashes(). Excluding the hyphenated aliases too would pass the test, but the hyphenated aliases don't appear in crypto.getHashes() in Node.js. so I've undone that part instead.

The other test failure looks like a flaky one:

command /home/runner/work/deno/deno/target/release/deno run --quiet --v8-flags=--expose-gc heapstats.js
command cwd /home/runner/work/deno/deno/tests/specs/run/heapstats
output path /home/runner/work/deno/deno/tests/specs/run/heapstats/heapstats.js.out

panicked at tests/specs/mod.rs:442:12:
assertion failed: `(left == right)`

Diff < left / right > :
<Allocated: 7MB
>Allocated: 8MB
 Freed: -8MB

@lilnasy
Copy link
Author

lilnasy commented Mar 20, 2025

@littledivy This is ready to review.

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

Successfully merging this pull request may close these issues.

Hashing functions from node:crypto don't support the same inputs as Node.js
3 participants