Skip to content

Commit

Permalink
Merge pull request #365 from ziluvatar/information-regarding-base64-s…
Browse files Browse the repository at this point in the history
…ecrets

docs: verifying with base64 encoded secrets
  • Loading branch information
fiddur committed Jun 27, 2017
2 parents 2f36063 + c25e990 commit 5f44a86
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -111,6 +111,8 @@ jwt.sign({
`secretOrPublicKey` is a string or buffer containing either the secret for HMAC algorithms, or the PEM
encoded public key for RSA and ECDSA.

As mentioned in [this comment](https://github.com/auth0/node-jsonwebtoken/issues/208#issuecomment-231861138), there are other libraries that expect base64 encoded secrets (random bytes encoded using base64), if that is your case you can pass `new Buffer(secret, 'base64')`, by doing this the secret will be decoded using base64 and the token verification will use the original random bytes.

`options`

* `algorithms`: List of strings with the names of the allowed algorithms. For instance, `["HS256", "HS384"]`.
Expand Down

0 comments on commit 5f44a86

Please sign in to comment.