Skip to content

Commit 27a7f1d

Browse files
authored
readme: Using private key with passpharase (#353)
1 parent 5e6dc77 commit 27a7f1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ $ npm install jsonwebtoken
2323

2424
`payload` could be an object literal, buffer or string. *Please note that* `exp` is only set if the payload is an object literal.
2525

26-
`secretOrPrivateKey` is a string or buffer containing either the secret for HMAC algorithms, or the PEM
27-
encoded private key for RSA and ECDSA.
26+
`secretOrPrivateKey` is a string, buffer, or object containing either the secret for HMAC algorithms or the PEM
27+
encoded private key for RSA and ECDSA. In case of a private key with passphrase an object `{ key, passphrase }` can be used (based on [crypto documentation](https://nodejs.org/api/crypto.html#crypto_sign_sign_private_key_output_format)), in this case be sure you pass the `algorithm` option.
2828

2929
`options`:
3030

0 commit comments

Comments
 (0)