In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
25 lines
558 B
JavaScript
25 lines
558 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var crypto = require('crypto');
|
|
|
|
var p = crypto.createDiffieHellman(1024).getPrime();
|
|
|
|
for (var i = 0; i < 2000; i++) {
|
|
const a = crypto.createDiffieHellman(p);
|
|
const b = crypto.createDiffieHellman(p);
|
|
|
|
a.generateKeys();
|
|
b.generateKeys();
|
|
|
|
assert.deepStrictEqual(
|
|
a.computeSecret(b.getPublicKey()),
|
|
b.computeSecret(a.getPublicKey()),
|
|
'secrets should be equal!'
|
|
);
|
|
}
|