From 9befa566ec3ef4594fd7ffb2cbdf5b34d9705e16 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Tue, 5 Sep 2023 22:31:50 -0700 Subject: fix(ext/node): implement AES GCM cipher (#20368) Adds support for AES-GCM 128/256 bit keys in `node:crypto` and `setAAD()`, `setAuthTag()` and `getAuthTag()` Uses https://github.com/littledivy/aead-gcm-stream Fixes https://github.com/denoland/deno/issues/19836 https://github.com/denoland/deno/issues/20353 --- cli/tests/integration/node_unit_tests.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/tests/integration') diff --git a/cli/tests/integration/node_unit_tests.rs b/cli/tests/integration/node_unit_tests.rs index 6f1f6fea9..05aa4c45a 100644 --- a/cli/tests/integration/node_unit_tests.rs +++ b/cli/tests/integration/node_unit_tests.rs @@ -54,6 +54,7 @@ util::unit_test_factory!( buffer_test, child_process_test, crypto_cipher_test = crypto / crypto_cipher_test, + crypto_cipher_gcm_test = crypto / crypto_cipher_gcm_test, crypto_hash_test = crypto / crypto_hash_test, crypto_key_test = crypto / crypto_key_test, crypto_sign_test = crypto / crypto_sign_test, -- cgit v1.2.3