Skip to content

Commit a77df6d

Browse files
committed
Documenting verify algorithms parameter.
1 parent e46ca66 commit a77df6d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ encoded public key for RSA and ECDSA.
7575

7676
`options`
7777

78+
* `algorithms`: List of strings with the names of the allowed algorithms. For instance, `["HS256", "HS384"]`.
7879
* `audience`: if you want to check audience (`aud`), provide a value here
7980
* `issuer`: if you want to check issuer (`iss`), provide a value here
8081

@@ -119,6 +120,12 @@ jwt.verify(token, cert, { audience: 'urn:foo', issuer: 'urn:issuer' }, function(
119120
// if issuer mismatch, err == invalid issuer
120121
});
121122

123+
// alg mismatch
124+
var cert = fs.readFileSync('public.pem'); // get public key
125+
jwt.verify(token, cert, { algorithms: ['RS256'] }, function (err, payload) {
126+
// if token alg != RS256, err == invalid signature
127+
});
128+
122129
```
123130

124131
### jwt.decode(token [, options])

0 commit comments

Comments
 (0)