Skip to content

Commit 92d33bd

Browse files
committed
this is a major change, it changes the default encoding from binary to utf8
1 parent 82dd249 commit 92d33bd

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"url": "https://github.com/auth0/node-jsonwebtoken/issues"
2020
},
2121
"dependencies": {
22-
"jws": "~1.0.1"
22+
"jws": "~2.0.0"
2323
},
2424
"devDependencies": {
2525
"atob": "~1.1.2",

test/encoding.tests.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,27 @@ var atob = require('atob');
44

55
describe('encoding', function() {
66

7+
function b64_to_utf8 (str) {
8+
return decodeURIComponent(escape(atob( str )));
9+
}
10+
711
it('should properly encode the token', function () {
812
var expected = 'José';
913
var token = jwt.sign({ name: expected }, 'shhhhh');
10-
var decoded_name = JSON.parse(atob(token.split('.')[1])).name;
14+
var decoded_name = JSON.parse(b64_to_utf8(token.split('.')[1])).name;
1115
expect(decoded_name).to.equal(expected);
1216
});
1317

18+
it('should return the same result when decoding', function () {
19+
var username = '測試';
20+
21+
var token = jwt.sign({
22+
username: username
23+
}, 'test');
24+
25+
var payload = jwt.verify(token, 'test');
26+
27+
expect(payload.username).to.equal(username);
28+
});
29+
1430
});

0 commit comments

Comments
 (0)