Skip to content

Commit e467910

Browse files
committed
Revert "test: disable openssl 3.4.0 incompatible tests"
This reverts commit e6a988d.
1 parent 18219cb commit e467910

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
constassert=require('assert');
99
constcrypto=require('crypto');
1010
constfixtures=require('../common/fixtures');
11-
const{ hasOpenSSL }=require('../common/crypto');
1211
constfs=require('fs');
1312

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

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

0 commit comments

Comments
(0)