Skip to content

Commit 9459c5a

Browse files
authored
Fix a missing check in encryption for encrypt call (#64)
* Fix typo in readme and tests for for insecure algorithm options * Fix a missing check in encryption for encrypt call Fix a callback to match callback error signature Add additional tests Fix README and test typos
1 parent 4625cc3 commit 9459c5a

File tree

3 files changed

+55
-16
lines changed

3 files changed

+55
-16
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var options = {
1818
pem: fs.readFileSync(__dirname + '/your_public_cert.pem'),
1919
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#aes256-cbc',
2020
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p',
21-
disallowInsecureEncryptionAlgorithm: true
21+
disallowEncryptionWithInsecureAlgorithm: true
2222
};
2323

2424
xmlenc.encrypt('content to encrypt', options, function(err, result) {
@@ -54,7 +54,7 @@ Result:
5454
~~~js
5555
var options = {
5656
key: fs.readFileSync(__dirname + '/your_private_key.key'),
57-
disallowInsecureDecryptionAlgorithm: true;
57+
disallowDecryptionWithInsecureAlgorithm: true;
5858
};
5959

6060
xmlenc.decrypt('<xenc:EncryptedData ..... </xenc:EncryptedData>', options, function(err, result) {
@@ -79,7 +79,7 @@ Currently the library supports:
7979
* http://www.w3.org/2001/04/xmlenc#aes256-cbc
8080
* http://www.w3.org/2001/04/xmlenc#tripledes-cbc (Insecure Algorithm)
8181

82-
Insecure Algorithms can be disabled via disallowInsecureEncryptionAlgorithm/disallowInsecureDecryptionAlgorithm flags when encrypting/decrypting. This flag is off by default in 0.x versions.
82+
Insecure Algorithms can be disabled via disallowEncryptionWithInsecureAlgorithm/disallowDecryptionWithInsecureAlgorithm flags when encrypting/decrypting. This flag is off by default in 0.x versions.
8383

8484
However, you can fork and implement your own algorithm. The code supports adding more algorithms easily
8585

lib/xmlenc.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ function encrypt(content, options, callback) {
6464
if (!options.pem)
6565
return callback(new Error('pem option is mandatory and you should provide a valid x509 certificate encoded as PEM'));
6666
if (options.disallowEncryptionWithInsecureAlgorithm
67-
&& insecureAlgorithms.indexOf(options.keyEncryptionAlgorithm) >= 0) {
68-
return callback(new Error('encryption algorithm ' + options.keyEncryptionAlgorithm + 'is not secure'));
67+
&& (insecureAlgorithms.indexOf(options.keyEncryptionAlgorithm) >= 0
68+
|| insecureAlgorithms.indexOf(options.encryptionAlgorithm) >= 0)) {
69+
return callback(new Error('encryption algorithm ' + options.keyEncryptionAlgorithm + ' is not secure'));
6970
}
7071
options.input_encoding = options.input_encoding || 'utf8';
7172

@@ -164,7 +165,7 @@ function decrypt(xml, options, callback) {
164165

165166
if (options.disallowDecryptionWithInsecureAlgorithm
166167
&& insecureAlgorithms.indexOf(encryptionAlgorithm) >= 0) {
167-
throw new Error('encryption algorithm ' + encryptionAlgorithm + ' is not secure, fail to decrypt');
168+
return callback(new Error('encryption algorithm ' + encryptionAlgorithm + ' is not secure, fail to decrypt'));
168169
}
169170
var encryptedContent = xpath.select("//*[local-name(.)='EncryptedData']/*[local-name(.)='CipherData']/*[local-name(.)='CipherValue']", doc)[0];
170171

test/xmlenc.encryptedkey.js

+48-10
Original file line numberDiff line numberDiff line change
@@ -56,37 +56,75 @@ describe('encrypt', function() {
5656
}
5757

5858
describe('des-ede3-cbc fails', function() {
59-
it('should fail encryption when disallowInsecureEncryptionAlgorithm is set', function(done) {
59+
it('should fail encryption when disallowEncryptionWithInsecureAlgorithm is set', function(done) {
6060
const options = {
6161
rsa_pub: fs.readFileSync(__dirname + '/test-auth0_rsa.pub'),
6262
pem: fs.readFileSync(__dirname + '/test-auth0.pem'),
6363
key: fs.readFileSync(__dirname + '/test-auth0.key'),
64-
disallowInsecureEncryptionAlgorithm: true,
65-
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#aes128-cbc',
64+
disallowEncryptionWithInsecureAlgorithm: true,
65+
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#tripledes-cbc',
6666
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p'
6767
}
68-
//options.encryptionAlgorithm = 'http://www.w3.org/2001/04/xmlenc#tripledes-cbc',
69-
//options.keyEncryptionAlgorithm = 'http://www.w3.org/2001/04/xmlenc#rsa-1_5';
7068
xmlenc.encrypt('encrypt me', options, function(err, result) {
7169
assert(err);
70+
assert(!result);
7271
done();
7372
});
7473
});
7574

76-
it('should fail decryption when disallowInsecureDecryptionAlgorithm is set', function(done) {
75+
it('should fail decryption when disallowDecryptionWithInsecureAlgorithm is set', function(done) {
7776
const options = {
7877
rsa_pub: fs.readFileSync(__dirname + '/test-auth0_rsa.pub'),
7978
pem: fs.readFileSync(__dirname + '/test-auth0.pem'),
8079
key: fs.readFileSync(__dirname + '/test-auth0.key'),
81-
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#aes128-cbc',
80+
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#tripledes-cbc',
8281
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p'
8382
}
8483
xmlenc.encrypt('encrypt me', options, function(err, result) {
8584
xmlenc.decrypt(result,
8685
{ key: fs.readFileSync(__dirname + '/test-auth0.key'),
87-
disallowInsecureDecryptionAlgorithm: true},
86+
disallowDecryptionWithInsecureAlgorithm: true},
87+
function (err, decrypted) {
88+
assert(err);
89+
assert(!decrypted);
90+
done();
91+
});
92+
});
93+
});
94+
});
95+
96+
describe('rsa-1.5 fails', function() {
97+
it('should fail encryption when disallowEncryptionWithInsecureAlgorithm is set', function(done) {
98+
const options = {
99+
rsa_pub: fs.readFileSync(__dirname + '/test-auth0_rsa.pub'),
100+
pem: fs.readFileSync(__dirname + '/test-auth0.pem'),
101+
key: fs.readFileSync(__dirname + '/test-auth0.key'),
102+
disallowEncryptionWithInsecureAlgorithm: true,
103+
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#aes256-cbc',
104+
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-1_5'
105+
}
106+
xmlenc.encrypt('encrypt me', options, function(err, result) {
107+
assert(err);
108+
assert(!result);
109+
done();
110+
});
111+
});
112+
113+
it('should fail decryption when disallowDecryptionWithInsecureAlgorithm is set', function(done) {
114+
const options = {
115+
rsa_pub: fs.readFileSync(__dirname + '/test-auth0_rsa.pub'),
116+
pem: fs.readFileSync(__dirname + '/test-auth0.pem'),
117+
key: fs.readFileSync(__dirname + '/test-auth0.key'),
118+
encryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#aes256-cbc',
119+
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-1_5'
120+
}
121+
xmlenc.encrypt('encrypt me', options, function(err, result) {
122+
xmlenc.decrypt(result,
123+
{ key: fs.readFileSync(__dirname + '/test-auth0.key'),
124+
disallowDecryptionWithInsecureAlgorithm: true},
88125
function (err, decrypted) {
89126
assert(err);
127+
assert(!decrypted);
90128
done();
91129
});
92130
});
@@ -133,12 +171,12 @@ describe('encrypt', function() {
133171
});
134172
});
135173

136-
it('should fail encrypt when disallowInsecureDecryptionAlgorithm is set', function (done) {
174+
it('should fail encrypt when disallowEncryptionWithInsecureAlgorithm is set', function (done) {
137175
var options = {
138176
rsa_pub: fs.readFileSync(__dirname + '/test-auth0_rsa.pub'),
139177
pem: fs.readFileSync(__dirname + '/test-auth0.pem'),
140178
keyEncryptionAlgorithm: 'http://www.w3.org/2001/04/xmlenc#rsa-1_5',
141-
disallowInsecureEncryptionAlgorithm: true
179+
disallowEncryptionWithInsecureAlgorithm: true
142180
};
143181

144182
var plaintext = 'The quick brown fox jumps over the lazy dog';

0 commit comments

Comments
 (0)