node/test/parallel/test-webcrypto-derivebits.js
James M Snell 05bb1b3f94 crypto: fixup scrypt regressions
Fixes a handful of regressions in scrypt support following
the refactor.

Fixes: https://github.com/nodejs/node/issues/35815

PR-URL: https://github.com/nodejs/node/pull/35821
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2020-10-30 11:08:09 +00:00

132 lines
3.7 KiB
JavaScript

// Flags: --expose-internals --no-warnings
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const { subtle } = require('crypto').webcrypto;
const { internalBinding } = require('internal/test/binding');
// This is only a partial test. The WebCrypto Web Platform Tests
// will provide much greater coverage.
// Test ECDH bit derivation
{
async function test(namedCurve) {
const [alice, bob] = await Promise.all([
subtle.generateKey({ name: 'ECDH', namedCurve }, true, ['deriveBits']),
subtle.generateKey({ name: 'ECDH', namedCurve }, true, ['deriveBits'])
]);
const [secret1, secret2] = await Promise.all([
subtle.deriveBits({
name: 'ECDH', namedCurve, public: alice.publicKey
}, bob.privateKey, 128),
subtle.deriveBits({
name: 'ECDH', namedCurve, public: bob.publicKey
}, alice.privateKey, 128)
]);
assert.deepStrictEqual(secret1, secret2);
}
test('P-521').then(common.mustCall());
}
// Test HKDF bit derivation
{
async function test(pass, info, salt, hash, length, expected) {
const ec = new TextEncoder();
const key = await subtle.importKey(
'raw',
ec.encode(pass),
{ name: 'HKDF', hash },
false, ['deriveBits']);
const secret = await subtle.deriveBits({
name: 'HKDF',
hash,
salt: ec.encode(salt),
info: ec.encode(info)
}, key, length);
assert.strictEqual(Buffer.from(secret).toString('hex'), expected);
}
const kTests = [
['hello', 'there', 'my friend', 'SHA-256', 512,
'14d93b0ccd99d4f2cbd9fbfe9c830b5b8a43e3e45e329' +
'41ef21bdeb0fa87b6b6bfa5c54466aa5bf76cdc2685fb' +
'a4408ea5b94c049fe035649b46f92fdc519374'],
['hello', 'there', 'my friend', 'SHA-384', 128,
'e36cf2cf943d8f3a88adb80f478745c3']
];
const tests = Promise.all(kTests.map((args) => test(...args)));
tests.then(common.mustCall());
}
// Test PBKDF2 bit derivation
{
async function test(pass, salt, iterations, hash, length, expected) {
const ec = new TextEncoder();
const key = await subtle.importKey(
'raw',
ec.encode(pass),
{ name: 'PBKDF2', hash },
false, ['deriveBits']);
const secret = await subtle.deriveBits({
name: 'PBKDF2',
hash,
salt: ec.encode(salt),
iterations,
}, key, length);
assert.strictEqual(Buffer.from(secret).toString('hex'), expected);
}
const kTests = [
['hello', 'there', 10, 'SHA-256', 512,
'f72d1cf4853fffbd16a42751765d11f8dc7939498ee7b7' +
'ce7678b4cb16fad88098110a83e71f4483ce73203f7a64' +
'719d293280f780f9fafdcf46925c5c0588b3'],
['hello', 'there', 5, 'SHA-384', 128,
'201509b012c9cd2fbe7ea938f0c509b3']
];
const tests = Promise.all(kTests.map((args) => test(...args)));
tests.then(common.mustCall());
}
// Test Scrypt bit derivation
if (typeof internalBinding('crypto').ScryptJob === 'function') {
async function test(pass, salt, length, expected) {
const ec = new TextEncoder();
const key = await subtle.importKey(
'raw',
ec.encode(pass),
{ name: 'NODE-SCRYPT' },
false, ['deriveBits']);
const secret = await subtle.deriveBits({
name: 'NODE-SCRYPT',
salt: ec.encode(salt),
}, key, length);
assert.strictEqual(Buffer.from(secret).toString('hex'), expected);
}
const kTests = [
['hello', 'there', 512,
'30ddda6feabaac788eb81cc38f496cd5d9a165d320c537ea05331fe720db1061b3a27' +
'b91a8428e49d44078c1fa395cb1c6db336ba44ccb80faa6d74918769374'],
['hello', 'there', 128,
'30ddda6feabaac788eb81cc38f496cd5']
];
const tests = Promise.all(kTests.map((args) => test(...args)));
tests.then(common.mustCall());
}