You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the crypto.generateKeyPairSync(type, options) section of the Crypto module, there is a minor typo. It is located just above the code block within the following line:
When encoding public keys, it is recommended to use 'spki'. When encoding private keys, it is recommended to use 'pks8' with a strong passphrase, and to keep the passphrase confidential.
'pks8' should actually be 'pkcs8'.
The text was updated successfully, but these errors were encountered:
In the
crypto.generateKeyPairSync(type, options)
section of the Crypto module, there is a minor typo. It is located just above the code block within the following line:'pks8' should actually be 'pkcs8'.
The text was updated successfully, but these errors were encountered: