11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciif (!common.hasCrypto) 41cb0ef41Sopenharmony_ci common.skip('missing crypto'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciconst assert = require('assert'); 71cb0ef41Sopenharmony_ciconst crypto = require('crypto'); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciconst alice = crypto.createDiffieHellmanGroup('modp5'); 101cb0ef41Sopenharmony_ciconst bob = crypto.createDiffieHellmanGroup('modp5'); 111cb0ef41Sopenharmony_cialice.generateKeys(); 121cb0ef41Sopenharmony_cibob.generateKeys(); 131cb0ef41Sopenharmony_ciconst aSecret = alice.computeSecret(bob.getPublicKey()).toString('hex'); 141cb0ef41Sopenharmony_ciconst bSecret = bob.computeSecret(alice.getPublicKey()).toString('hex'); 151cb0ef41Sopenharmony_ciassert.strictEqual(aSecret, bSecret); 16