Skip to content

Commit 727c95a

Browse files
committed
Revert "test: disable openssl 3.4.0 incompatible tests"
This reverts commit e6a988d.
1 parent cd4bc1c commit 727c95a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/parallel/test-crypto-oneshot-hash.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ if (!common.hasCrypto)
88
const assert = require('assert');
99
const crypto = require('crypto');
1010
const fixtures = require('../common/fixtures');
11-
const { hasOpenSSL } = require('../common/crypto');
1211
const fs = require('fs');
1312

1413
// Test errors for invalid arguments.
@@ -32,9 +31,6 @@ const methods = crypto.getHashes();
3231
const input = fs.readFileSync(fixtures.path('utf8_test_text.txt'));
3332

3433
for (const method of methods) {
35-
// Skip failing tests on OpenSSL 3.4.0
36-
if (method.startsWith('shake') && hasOpenSSL(3, 4))
37-
continue;
3834
for (const outputEncoding of ['buffer', 'hex', 'base64', undefined]) {
3935
const oldDigest = crypto.createHash(method).update(input).digest(outputEncoding || 'hex');
4036
const digestFromBuffer = crypto.hash(method, input, outputEncoding);

0 commit comments

Comments
 (0)