Skip to content

Commit 40b2aaa

Browse files
committed
Update README.md
It's too easy to skim the documentation and accidentally use `jwt.decode` instead of `jwt.verify`. This adds a warning to prevent that.
1 parent 6a715a1 commit 40b2aaa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ jwt.verify(token, cert, { algorithms: ['RS256'] }, function (err, payload) {
131131

132132
(Synchronous) Returns the decoded payload without verifying if the signature is valid.
133133

134+
__Warning:__ This will __not__ verify whether the signature is valid. You should __not__ use this for untrusted messages. You most likely want to use `jwt.verify` instead.
135+
134136
`token` is the JsonWebToken string
135137

136138
`options`:

0 commit comments

Comments
 (0)