(keylen, expectedCipher)
| 104 | } |
| 105 | |
| 106 | function testCustomParam(keylen, expectedCipher) { |
| 107 | const dhparam = loadDHParam(keylen); |
| 108 | if (keylen === 'error') keylen = null; |
| 109 | return test(dhparam, keylen, expectedCipher); |
| 110 | } |
| 111 | |
| 112 | (async () => { |
| 113 | // By default, DHE is disabled while ECDHE is enabled. OpenSSL 4.0 |
no test coverage detected
searching dependent graphs…