fix(ext/node): implement hkdf-expand (#18612)

Towards https://github.com/denoland/deno/issues/18455
This commit is contained in:
Divy Srivastava 2023-04-06 22:26:56 +05:30 committed by GitHub
parent 2d0a9ffbcc
commit df72420d72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 287 additions and 8 deletions

View file

@ -189,6 +189,8 @@ deno_core::extension!(deno_node,
crypto::op_node_check_prime_bytes_async,
crypto::op_node_pbkdf2,
crypto::op_node_pbkdf2_async,
crypto::op_node_hkdf,
crypto::op_node_hkdf_async,
crypto::op_node_generate_secret,
crypto::op_node_generate_secret_async,
crypto::op_node_sign,