Skip to content

Commit 6e81ff8

Browse files
committed
minor
1 parent 253ceaf commit 6e81ff8

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,6 @@ var token = jwt.sign({ foo: 'bar' }, cert, { algorithm: 'RS256'});
5555

5656
### jwt.verify(token, secretOrPublicKey, [options, callback])
5757

58-
`options`:
59-
60-
* `ignoreExpiration`
61-
* `audience`
62-
* `issuer`
63-
64-
6558
(Asynchronous) If a callback is supplied, function acts asynchronously. Callback passed the payload decoded if the signature (and optionally expiration, audience, issuer) are valid. If not, it will be passed the error.
6659

6760
(Synchronous) If a callback is not supplied, function acts synchronously. Returns the payload decoded if the signature (and optionally expiration, audience, issuer) are valid. If not, it will throw the error.
@@ -77,6 +70,7 @@ encoded public key for RSA and ECDSA.
7770
* `audience`: if you want to check audience (`aud`), provide a value here
7871
* `issuer`: if you want to check issuer (`iss`), provide a value here
7972
* `ignoreExpiration`: if `true` do not validate the expiration of the token.
73+
* `maxAge`: optional sets an expiration based on the `iat` field. Eg `2h`
8074

8175
```js
8276
// verify a token symmetric - synchronous

0 commit comments

Comments
 (0)