Skip to content

Commit b067bcd

Browse files
committed
Fix minimum OpenSSL version for Argon2
1 parent 6ee6ea3 commit b067bcd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/parallel/test-crypto-argon2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ if (!common.hasCrypto)
55

66
const { hasOpenSSL } = require('../common/crypto');
77

8-
if (!hasOpenSSL(3, 5))
9-
common.skip('requires OpenSSL >= 3.5');
8+
if (!hasOpenSSL(3, 2))
9+
common.skip('requires OpenSSL >= 3.2');
1010

1111
const assert = require('node:assert');
1212
const crypto = require('node:crypto');

0 commit comments

Comments
 (0)