| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 861c99f commit 5660b99
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -31,6 +31,9 @@ const methods = crypto.getHashes(); | |||
| 31 | 31 | const input = fs.readFileSync(fixtures.path('utf8_test_text.txt')); | |
| 32 | 32 | ||
| 33 | 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; | ||
| 34 | 37 | for (const outputEncoding of ['buffer', 'hex', 'base64', undefined]) { | |
| 35 | 38 | const oldDigest = crypto.createHash(method).update(input).digest(outputEncoding || 'hex'); | |
| 36 | 39 | const digestFromBuffer = crypto.hash(method, input, outputEncoding); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments