node/test/pummel/test-crypto-dh.js
Sakthipriyan Vairamani 80a1cf7425 test: fix messages and use return to skip tests
This is a followup of https://github.com/nodejs/io.js/pull/2109.
The tests which didn't make it in #2109, are included in this patch.
The skip messages are supposed to follow the format

    1..0 # Skipped: [Actual reason why the test is skipped]

and the tests should be skipped with the return statement.

PR-URL: https://github.com/nodejs/io.js/pull/2290
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-08-03 21:32:48 +05:30

51 lines
1.5 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
try {
var crypto = require('crypto');
} catch (e) {
console.log('1..0 # Skipped: node compiled without OpenSSL.');
return;
}
assert.throws(function() {
crypto.getDiffieHellman('unknown-group');
});
assert.throws(function() {
crypto.getDiffieHellman('modp1').setPrivateKey('');
});
assert.throws(function() {
crypto.getDiffieHellman('modp1').setPublicKey('');
});
var hashes = {
modp1 : 'b4b330a6ffeacfbd861e7fe2135b4431',
modp2 : '7c3c5cad8b9f378d88f1dd64a4b6413a',
modp5 : 'b1d2acc22c542e08669a5c5ae812694d',
modp14 : '8d041538cecc1a7d915ba4b718f8ad20',
modp15 : 'dc3b93def24e078c4fbf92d5e14ba69b',
modp16 : 'a273487f46f699461f613b3878d9dfd9',
modp17 : 'dc76e09935310348c492de9bd82014d0',
modp18 : 'db08973bfd2371758a69db180871c993'
};
for (var name in hashes) {
var group = crypto.getDiffieHellman(name);
var private_key = group.getPrime('hex');
var hash1 = hashes[name];
var hash2 = crypto.createHash('md5')
.update(private_key.toUpperCase()).digest('hex');
assert.equal(hash1, hash2);
assert.equal(group.getGenerator('hex'), '02');
}
for (var name in hashes) {
var group1 = crypto.getDiffieHellman(name);
var group2 = crypto.getDiffieHellman(name);
group1.generateKeys();
group2.generateKeys();
var key1 = group1.computeSecret(group2.getPublicKey());
var key2 = group2.computeSecret(group1.getPublicKey());
assert.deepEqual(key1, key2);
}