| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent db5ee23 commit b51b4fe
20 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,6 +8,10 @@ if (!common.hasCrypto) | |||
| 8 | 8 | if (common.hasFipsCrypto) | |
| 9 | 9 | common.skip('some benchmarks are FIPS-incompatible'); | |
| 10 | 10 | ||
| 11 | + if (common.hasOpenSSL3) { | ||
| 12 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 13 | + } | ||
| 14 | + | ||
| 11 | 15 | const runBenchmark = require('../common/benchmark'); | |
| 12 | 16 | ||
| 13 | 17 | runBenchmark('crypto', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 }); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,9 @@ const common = require('../common'); | |||
| 3 | 3 | if (!common.hasCrypto) | |
| 4 | 4 | common.skip('missing crypto'); | |
| 5 | 5 | ||
| 6 | + if (common.hasOpenSSL3) | ||
| 7 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 8 | + | ||
| 6 | 9 | const assert = require('assert'); | |
| 7 | 10 | const util = require('util'); | |
| 8 | 11 | const crypto = require('crypto'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,9 @@ const common = require('../common'); | |||
| 3 | 3 | if (!common.hasCrypto) | |
| 4 | 4 | common.skip('missing crypto'); | |
| 5 | 5 | ||
| 6 | + if (common.hasOpenSSL3) | ||
| 7 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 8 | + | ||
| 6 | 9 | const assert = require('assert'); | |
| 7 | 10 | const crypto = require('crypto'); | |
| 8 | 11 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,9 @@ const common = require('../common'); | |||
| 4 | 4 | if (!common.hasCrypto) | |
| 5 | 5 | common.skip('missing crypto'); | |
| 6 | 6 | ||
| 7 | + if (common.hasOpenSSL3) | ||
| 8 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 9 | + | ||
| 7 | 10 | const assert = require('assert'); | |
| 8 | 11 | const { | |
| 9 | 12 | createCipheriv, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,9 @@ const common = require('../common'); | |||
| 4 | 4 | if (!common.hasCrypto) | |
| 5 | 5 | common.skip('missing crypto'); | |
| 6 | 6 | ||
| 7 | + if (common.hasOpenSSL3) | ||
| 8 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 9 | + | ||
| 7 | 10 | const assert = require('assert'); | |
| 8 | 11 | const { | |
| 9 | 12 | constants, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,9 @@ const common = require('../common'); | |||
| 3 | 3 | if (!common.hasCrypto) | |
| 4 | 4 | common.skip('missing crypto'); | |
| 5 | 5 | ||
| 6 | + if (common.hasOpenSSL3) | ||
| 7 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 8 | + | ||
| 6 | 9 | const assert = require('assert'); | |
| 7 | 10 | const crypto = require('crypto'); | |
| 8 | 11 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,9 @@ const common = require('../common'); | |||
| 3 | 3 | if (!common.hasCrypto) | |
| 4 | 4 | common.skip('missing crypto'); | |
| 5 | 5 | ||
| 6 | + if (common.hasOpenSSL3) | ||
| 7 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 8 | + | ||
| 6 | 9 | const assert = require('assert'); | |
| 7 | 10 | const fs = require('fs'); | |
| 8 | 11 | const path = require('path'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,6 +5,9 @@ const common = require('../common'); | |||
| 5 | 5 | if (!common.hasCrypto) | |
| 6 | 6 | common.skip('missing crypto'); | |
| 7 | 7 | ||
| 8 | + if (common.hasOpenSSL3) | ||
| 9 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 10 | + | ||
| 8 | 11 | const assert = require('assert'); | |
| 9 | 12 | const { subtle, getRandomValues } = require('crypto').webcrypto; | |
| 10 | 13 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,6 +5,9 @@ const common = require('../common'); | |||
| 5 | 5 | if (!common.hasCrypto) | |
| 6 | 6 | common.skip('missing crypto'); | |
| 7 | 7 | ||
| 8 | + if (common.hasOpenSSL3) | ||
| 9 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 10 | + | ||
| 8 | 11 | const assert = require('assert'); | |
| 9 | 12 | const { subtle } = require('crypto').webcrypto; | |
| 10 | 13 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,6 +5,9 @@ const common = require('../common'); | |||
| 5 | 5 | if (!common.hasCrypto) | |
| 6 | 6 | common.skip('missing crypto'); | |
| 7 | 7 | ||
| 8 | + if (common.hasOpenSSL3) | ||
| 9 | + common.skip('temporarily skipping for OpenSSL 3.0-alpha15'); | ||
| 10 | + | ||
| 8 | 11 | const assert = require('assert'); | |
| 9 | 12 | const { subtle, getRandomValues } = require('crypto').webcrypto; | |
| 10 | 13 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments