summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-cipher-list.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2015-08-17 15:51:51 -0700
committerJames M Snell <jasnell@gmail.com>2015-08-23 08:52:01 -0700
commit5ba868f02493a9d81637d7f5983a47536332d7c8 (patch)
tree953013f47b6c6b5e2ab3b941558723826ddca6f4 /test/parallel/test-tls-cipher-list.js
parent3a7be23f986f95412f968979c5d83ee68f3f2da2 (diff)
downloadandroid-node-v8-5ba868f02493a9d81637d7f5983a47536332d7c8.tar.gz
android-node-v8-5ba868f02493a9d81637d7f5983a47536332d7c8.tar.bz2
android-node-v8-5ba868f02493a9d81637d7f5983a47536332d7c8.zip
tls: add --tls-cipher-list command line switch
This adds a new `--tls-cipher-list` command line switch that can be used to override the built-in default cipher list. The intent of this is to make it possible to enforce an alternative default cipher list at the process level. Overriding the default cipher list is still permitted at the application level by changing the value of `require('tls').DEFAULT_CIPHERS`. As part of the change, the built in default list is moved out of tls.js and into node_constants.h and node_constants.cc. Two new constants are added to require('constants'): * defaultCipherList (the active default cipher list) * defaultCoreCipherList (the built-in default cipher list) A test case and doc changes are included. A new NODE_DEFINE_STRING_CONSTANT macro is also created in node_internals.h When node_constants is initialized, it will pick up either the passed in command line switch or fallback to the default built-in suite. Within joyent/node, this change had originaly been wrapped up with a number of other related commits involving the removal of the RC4 cipher. This breaks out this isolated change. /cc @mhdawson, @misterdjules, @trevnorris, @indutny, @rvagg Reviewed By: Ben Noordhuis <ben@strongloop.com> PR-URL: https://github.com/nodejs/node/pull/2412
Diffstat (limited to 'test/parallel/test-tls-cipher-list.js')
-rw-r--r--test/parallel/test-tls-cipher-list.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/parallel/test-tls-cipher-list.js b/test/parallel/test-tls-cipher-list.js
new file mode 100644
index 0000000000..9ae8fefa0f
--- /dev/null
+++ b/test/parallel/test-tls-cipher-list.js
@@ -0,0 +1,32 @@
+'use strict';
+const common = require('../common');
+
+if (!common.hasCrypto) {
+ console.log('1..0 # Skipped: missing crypto');
+ return;
+}
+
+const assert = require('assert');
+const spawn = require('child_process').spawn;
+const defaultCoreList = require('constants').defaultCoreCipherList;
+
+function doCheck(arg, check) {
+ var out = '';
+ var arg = arg.concat([
+ '-pe',
+ 'require("constants").defaultCipherList'
+ ]);
+ spawn(process.execPath, arg, {}).
+ on('error', assert.fail).
+ stdout.on('data', function(chunk) {
+ out += chunk;
+ }).on('end', function() {
+ assert.equal(out.trim(), check);
+ }).on('error', assert.fail);
+}
+
+// test the default unmodified version
+doCheck([], defaultCoreList);
+
+// test the command line switch by itself
+doCheck(['--tls-cipher-list=ABC'], 'ABC');