From 6e288c7c251e6f728d377911910dbf051d39a3cc Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 10 Apr 2021 22:23:34 -0700 Subject: [PATCH 1/3] doc: standardize on pseudorandom in webcrypto docs Our docs use both _pseudo-random_ and _pseudorandom_. Standardize on _pseudorandom_. --- doc/api/webcrypto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index 43327f58e5b6ae..0c29d9e2231c9e 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -1175,7 +1175,7 @@ added: v15.0.0 * Type: {ArrayBuffer|TypedArray|DataView|Buffer} The salt value significantly improves the strength of the HKDF algorithm. -It should be random or pseudo-random and should be the same length as the +It should be random or pseudorandom and should be the same length as the output of the digest function (for instance, if using `'SHA-256'` as the digest, the salt should be 256-bits of random data). @@ -1327,7 +1327,7 @@ added: v15.0.0 * Type: {ArrayBuffer|TypedArray|DataView|Buffer} -Should be at least 16 random or pseudo-random bytes. +Should be at least 16 random or pseudorandom bytes. ### Class: `RsaHashedImportParams`