node/test/parallel/test-webcrypto-sign-verify-hmac.js
James M Snell dae283d96f
crypto: refactoring internals, add WebCrypto
Fixes: https://github.com/nodejs/node/issues/678
Refs: https://github.com/nodejs/node/issues/26854

Signed-off-by: James M Snell <jasnell@gmail.com>

PR-URL: https://github.com/nodejs/node/pull/35093
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2020-10-07 17:27:05 -07:00

180 lines
4.1 KiB
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const { subtle } = require('crypto').webcrypto;
const vectors = require('../fixtures/crypto/hmac')();
async function testVerify({
hash,
keyBuffer,
signature,
plaintext }) {
const name = 'HMAC';
const [
key,
noVerifyKey,
rsaKeys
] = await Promise.all([
subtle.importKey(
'raw',
keyBuffer,
{ name, hash },
false,
['verify']),
subtle.importKey(
'raw',
keyBuffer,
{ name, hash },
false,
[ /* No usages */ ]),
subtle.generateKey(
{
name: 'RSA-PSS',
modulusLength: 1024,
publicExponent: new Uint8Array([1, 0, 1]),
hash: 'SHA-256',
},
false,
['sign'])
]);
assert(await subtle.verify({ name, hash }, key, signature, plaintext));
// Test verification with altered buffers
const copy = Buffer.from(plaintext);
const sigcopy = Buffer.from(signature);
const p = subtle.verify({ name, hash }, key, sigcopy, copy);
copy[0] = 255 - copy[0];
sigcopy[0] = 255 - sigcopy[0];
assert(await p);
// Test failure when using wrong key
await assert.rejects(
subtle.verify({ name, hash }, noVerifyKey, signature, plaintext), {
message: /Unable to use this key to verify/
});
// Test failure when using the wrong algorithms
await assert.rejects(
subtle.verify({ name, hash }, rsaKeys.publicKey, signature, plaintext), {
message: /Unable to use this key to verify/
});
// Test failure when signature is altered
{
const copy = Buffer.from(signature);
copy[0] = 255 - copy[0];
assert(!(await subtle.verify(
{ name, hash },
key,
copy,
plaintext)));
assert(!(await subtle.verify(
{ name, hash },
key,
copy.slice(1),
plaintext)));
}
// Test failure when data is altered
{
const copy = Buffer.from(plaintext);
copy[0] = 255 - copy[0];
assert(!(await subtle.verify({ name, hash }, key, signature, copy)));
}
// Test failure when wrong hash is used
{
const otherhash = hash === 'SHA-1' ? 'SHA-256' : 'SHA-1';
assert(!(await subtle.verify({
name,
hash: otherhash
}, key, signature, copy)));
}
await assert.rejects(
subtle.verify({ name, hash: 'sha256' }, key, signature, copy), {
message: /Unrecognized name/
});
}
async function testSign({
hash,
keyBuffer,
signature,
plaintext }) {
const name = 'HMAC';
const [
key,
noSignKey,
rsaKeys,
] = await Promise.all([
subtle.importKey(
'raw',
keyBuffer,
{ name, hash },
false,
['verify', 'sign']),
subtle.importKey(
'raw',
keyBuffer,
{ name, hash },
false,
[ 'verify' ]),
subtle.generateKey(
{
name: 'RSA-PSS',
modulusLength: 1024,
publicExponent: new Uint8Array([1, 0, 1]),
hash: 'SHA-256',
},
false,
['sign'])
]);
{
const sig = await subtle.sign({ name, hash }, key, plaintext);
assert.strictEqual(
Buffer.from(sig).toString('hex'),
signature.toString('hex'));
assert(await subtle.verify({ name, hash }, key, sig, plaintext));
}
{
const copy = Buffer.from(plaintext);
const p = subtle.sign({ name, hash }, key, copy);
copy[0] = 255 - copy[0];
const sig = await p;
assert(await subtle.verify({ name, hash }, key, sig, plaintext));
}
// Test failure when no sign usage
await assert.rejects(
subtle.sign({ name, hash }, noSignKey, plaintext), {
message: /Unable to use this key to sign/
});
// Test failure when using the wrong algorithms
await assert.rejects(
subtle.sign({ name, hash }, rsaKeys.privateKey, plaintext), {
message: /Unable to use this key to sign/
});
}
(async function() {
const variations = [];
vectors.forEach((vector) => {
variations.push(testVerify(vector));
variations.push(testSign(vector));
});
await Promise.all(variations);
})().then(common.mustCall());