We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebac286 commit dcaecf0Copy full SHA for dcaecf0
1 file changed
test/parallel/test-crypto-oneshot-hash.js
@@ -31,6 +31,9 @@ const methods = crypto.getHashes();
31
const input = fs.readFileSync(fixtures.path('utf8_test_text.txt'));
32
33
for (const method of methods) {
34
+ // Skip failing tests on OpenSSL 3.4.0
35
+ if (method.startsWith('shake') && common.hasOpenSSL(3, 4))
36
+ continue;
37
for (const outputEncoding of ['buffer', 'hex', 'base64', undefined]) {
38
const oldDigest = crypto.createHash(method).update(input).digest(outputEncoding || 'hex');
39
const digestFromBuffer = crypto.hash(method, input, outputEncoding);
0 commit comments