Skip to content

Commit 4027946

Browse files
committed
Merge pull request #71 from awlayton/fix-begin-public-rsa
Fix verify for RSAPublicKey formated keys
2 parents 4d22d08 + 8df6aab commit 4027946

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ module.exports.verify = function(jwtString, secretOrPublicKey, options, callback
111111
options.algorithms = ~secretOrPublicKey.toString().indexOf('BEGIN CERTIFICATE') ||
112112
~secretOrPublicKey.toString().indexOf('BEGIN PUBLIC KEY') ?
113113
[ 'RS256','RS384','RS512','ES256','ES384','ES512' ] :
114-
[ 'HS256','HS384','HS512' ];
114+
~secretOrPublicKey.toString().indexOf('BEGIN RSA PUBLIC KEY') ?
115+
[ 'RS256','RS384','RS512' ] :
116+
[ 'HS256','HS384','HS512' ];
115117

116118
}
117119

test/rsa-public-key.pem

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-----BEGIN RSA PUBLIC KEY-----
2+
MIIBCgKCAQEAvzoCEC2rpSpJQaWZbUmlsDNwp83Jr4fi6KmBWIwnj1MZ6CUQ7rBa
3+
suLI8AcfX5/10scSfQNCsTLV2tMKQaHuvyrVfwY0dINk+nkqB74QcT2oCCH9XduJ
4+
jDuwWA4xLqAKuF96FsIes52opEM50W7/W7DZCKXkC8fFPFj6QF5ZzApDw2Qsu3yM
5+
Rmr7/W9uWeaTwfPx24YdY7Ah+fdLy3KN40vXv9c4xiSafVvnx9BwYL7H1Q8NiK9L
6+
GEN6+JSWfgckQCs6UUBOXSZdreNN9zbQCwyzee7bOJqXUDAuLcFARzPw1EsZAyjV
7+
tGCKIQ0/btqK+jFunT2NBC8RItanDZpptQIDAQAB
8+
-----END RSA PUBLIC KEY-----

test/rsa-public-key.tests.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
var jwt = require('../');
2+
3+
describe('public key start with BEGIN RSA PUBLIC KEY', function () {
4+
5+
it('should work', function (done) {
6+
var fs = require('fs');
7+
var cert_pub = fs.readFileSync(__dirname + '/rsa-public-key.pem');
8+
var cert_priv = fs.readFileSync(__dirname + '/rsa-private.pem');
9+
10+
var token = jwt.sign({ foo: 'bar' }, cert_priv, { algorithm: 'RS256'});
11+
12+
jwt.verify(token, cert_pub, done);
13+
});
14+
15+
});

0 commit comments

Comments
 (0)