Skip to content

Commit 1fc385e

Browse files
committed
allow passing encoding
1 parent 92d33bd commit 1fc385e

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ module.exports.sign = function(payload, secretOrPrivateKey, options) {
4343
if (options.subject)
4444
payload.sub = options.subject;
4545

46-
var signed = jws.sign({header: header, payload: payload, secret: secretOrPrivateKey});
46+
var encoding = 'utf8';
47+
if (options.encoding) {
48+
encoding = options.encoding;
49+
}
50+
51+
var signed = jws.sign({header: header, payload: payload, secret: secretOrPrivateKey, encoding: encoding});
4752

4853
return signed;
4954
};

test/encoding.tests.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,20 @@ describe('encoding', function() {
88
return decodeURIComponent(escape(atob( str )));
99
}
1010

11-
it('should properly encode the token', function () {
11+
it('should properly encode the token (utf8)', function () {
1212
var expected = 'José';
1313
var token = jwt.sign({ name: expected }, 'shhhhh');
1414
var decoded_name = JSON.parse(b64_to_utf8(token.split('.')[1])).name;
1515
expect(decoded_name).to.equal(expected);
1616
});
1717

18+
it('should properly encode the token (binary)', function () {
19+
var expected = 'José';
20+
var token = jwt.sign({ name: expected }, 'shhhhh', { encoding: 'binary' });
21+
var decoded_name = JSON.parse(atob(token.split('.')[1])).name;
22+
expect(decoded_name).to.equal(expected);
23+
});
24+
1825
it('should return the same result when decoding', function () {
1926
var username = '測試';
2027

0 commit comments

Comments
 (0)