From 968b74695c66e9bc9184475cbbc7f70bfd1ec8b9 Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Wed, 13 Mar 2024 23:56:33 +0800 Subject: [PATCH] doc: remove ArrayBuffer from crypto.hash() data parameter type PR-URL: https://github.com/nodejs/node/pull/52069 Reviewed-By: Antoine du Hamel Reviewed-By: Marco Ippolito Reviewed-By: Chengzhong Wu --- doc/api/crypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 4c0e78a25c921a..21b680f04dc2d9 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -3510,7 +3510,7 @@ Computes the Diffie-Hellman secret based on a `privateKey` and a `publicKey`. Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'` (for Diffie-Hellman), `'ec'` (for ECDH), `'x448'`, or `'x25519'` (for ECDH-ES). -### `crypto.hash(algorith, data[, outputEncoding])` +### `crypto.hash(algorithm, data[, outputEncoding])`