mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
654 B
24 lines
654 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const setup = 'const enc = { toString: () => { throw new Error("xyz"); } };';
|
|
|
|
const scripts = [
|
|
'crypto.createHash("sha256").digest(enc)',
|
|
'crypto.createHmac("sha256", "msg").digest(enc)'
|
|
];
|
|
|
|
scripts.forEach((script) => {
|
|
const node = process.execPath;
|
|
const code = setup + ';' + script;
|
|
execFile(node, [ '-e', code ], common.mustCall((err, stdout, stderr) => {
|
|
assert(stderr.includes('Error: xyz'), 'digest crashes');
|
|
}));
|
|
});
|
|
|