11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciif (!common.hasCrypto) 51cb0ef41Sopenharmony_ci common.skip('missing crypto'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst assert = require('assert'); 81cb0ef41Sopenharmony_ciconst { 91cb0ef41Sopenharmony_ci generateKeyPair, 101cb0ef41Sopenharmony_ci} = require('crypto'); 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ci// Test classic Diffie-Hellman key generation. 131cb0ef41Sopenharmony_ci{ 141cb0ef41Sopenharmony_ci generateKeyPair('dh', { 151cb0ef41Sopenharmony_ci primeLength: 512 161cb0ef41Sopenharmony_ci }, common.mustSucceed((publicKey, privateKey) => { 171cb0ef41Sopenharmony_ci assert.strictEqual(publicKey.type, 'public'); 181cb0ef41Sopenharmony_ci assert.strictEqual(publicKey.asymmetricKeyType, 'dh'); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci assert.strictEqual(privateKey.type, 'private'); 211cb0ef41Sopenharmony_ci assert.strictEqual(privateKey.asymmetricKeyType, 'dh'); 221cb0ef41Sopenharmony_ci })); 231cb0ef41Sopenharmony_ci} 24