()
| 44 | } = internalBinding('constants'); |
| 45 | |
| 46 | function getDefaultEcdhCurve() { |
| 47 | // We do it this way because DEFAULT_ECDH_CURVE can be |
| 48 | // changed by users, so we need to grab the current |
| 49 | // value, but we want the evaluation to be lazy. |
| 50 | return require('tls').DEFAULT_ECDH_CURVE || 'auto'; |
| 51 | } |
| 52 | |
| 53 | function getDefaultCiphers() { |
| 54 | // We do it this way because DEFAULT_CIPHERS can be |
no test coverage detected