From 394f8ca3337f94c0e4403897f6e2a6ccc4d6430f Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Wed, 18 Mar 2020 09:57:30 +0100 Subject: [PATCH] doc,crypto: clarify oaepHash option's impact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/32340 Reviewed-By: James M Snell Reviewed-By: Tobias Nießen --- 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 5c20cc84297bb7..bd4fead3eb1917 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2474,7 +2474,7 @@ changes: --> * `privateKey` {Object | string | Buffer | KeyObject} - * `oaepHash` {string} The hash function to use for OAEP padding. + * `oaepHash` {string} The hash function to use for OAEP padding and MGF1. **Default:** `'sha1'` * `oaepLabel` {Buffer | TypedArray | DataView} The label to use for OAEP padding. If not specified, no label is used. @@ -2564,7 +2564,7 @@ changes: * `key` {Object | string | Buffer | KeyObject} * `key` {string | Buffer | KeyObject} A PEM encoded public or private key. - * `oaepHash` {string} The hash function to use for OAEP padding. + * `oaepHash` {string} The hash function to use for OAEP padding and MGF1. **Default:** `'sha1'` * `oaepLabel` {Buffer | TypedArray | DataView} The label to use for OAEP padding. If not specified, no label is used.