From 1e8a6b94b1dcf98a2ae4de97b3e98e7b3e4e8f7f Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Mon, 24 Jun 2024 11:47:12 +0200 Subject: fix(ext/node): rewrite crypto.Hash (#24302) Changes in this PR: - Added new fixed size hash algorithms (blake2b512, blake2s256, sha512-224, sha512-256, sha3-224, sha3-256, sha3-384, sha3-512, sm3) - Added variable size hash algorithms (the concept), with the algorithms shake128 and shake256 - Use cppgc instead of resources for the hasher - Enable Node's crypto.Hash tests and fix found bugs --- tests/integration/node_unit_tests.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/integration/node_unit_tests.rs') diff --git a/tests/integration/node_unit_tests.rs b/tests/integration/node_unit_tests.rs index b067f3121..d0b6d1fbd 100644 --- a/tests/integration/node_unit_tests.rs +++ b/tests/integration/node_unit_tests.rs @@ -61,6 +61,7 @@ util::unit_test_factory!( crypto_cipher_gcm_test = crypto / crypto_cipher_gcm_test, crypto_hash_test = crypto / crypto_hash_test, crypto_key_test = crypto / crypto_key_test, + crypto_misc_test = crypto / crypto_misc_test, crypto_sign_test = crypto / crypto_sign_test, events_test, dgram_test, -- cgit v1.2.3