Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buffer signing incorrectly serializes payload #216

Closed
sandersaares opened this issue Jun 13, 2016 · 1 comment
Closed

Buffer signing incorrectly serializes payload #216

sandersaares opened this issue Jun 13, 2016 · 1 comment

Comments

@sandersaares
Copy link

sandersaares commented Jun 13, 2016

The documentation states that payload could be an object literal, buffer or string but this does not appear to match the implementation. The following code incorrectly transforms the buffer into a JSON object, instead of serializing it as-is.

let jwt = require("jsonwebtoken");
let payload = Buffer.from("TkJyotZe8NFpgdfnmgINqg==", "base64");

console.log(payload);

let token = jwt.sign(payload, "signing key");

console.log(token);

Expected behavior: payload is the 16-byte buffer provided.
Actual behavior: payload is {"0":78,"1":66,"2":114,"3":162,"4":214,"5":94,"6":240,"7":209,"8":105,"9":129,"10":215,"11":231,"12":154,"13":2,"14":13,"15":170,"iat":1465815291}

Adding the noTimestamp option makes no difference (besides removing the timestamp).

@sandersaares sandersaares changed the title Buffer signing incorrectly serialized payload Buffer signing incorrectly serializes payload Jun 13, 2016
@jfromaniello
Copy link
Member

Thank you very much for reporting this. I found the issue and solved in v7.1.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants