The tap skipping output is so prevalent yet obscure in nature that we
ought to move it into it's own function in test/common.js
Re-do of 52bae222a3 for v4.x
Ref: https://github.com/nodejs/node/pull/6697
PR-URL: https://github.com/nodejs/node/pull/7114
Reviewed-By: Myles Borins <myles.borins@gmail.com>
25 lines
531 B
JavaScript
25 lines
531 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var crypto = require('crypto');
|
|
|
|
function test() {
|
|
var odd = new Buffer(39);
|
|
odd.fill('A');
|
|
|
|
var c = crypto.createDiffieHellman(32);
|
|
c.setPrivateKey(odd);
|
|
c.generateKeys();
|
|
}
|
|
|
|
// FIPS requires a length of at least 1024
|
|
if (!common.hasFipsCrypto) {
|
|
assert.doesNotThrow(function() { test(); });
|
|
} else {
|
|
assert.throws(function() { test(); }, /key size too small/);
|
|
}
|