()
| 51 | } |
| 52 | |
| 53 | function getDefaultCiphers() { |
| 54 | // We do it this way because DEFAULT_CIPHERS can be |
| 55 | // changed by users, so we need to grab the current |
| 56 | // value, but we want the evaluation to be lazy. |
| 57 | return require('tls').DEFAULT_CIPHERS; |
| 58 | } |
| 59 | |
| 60 | function addCACerts(context, certs, name) { |
| 61 | ArrayPrototypeForEach(certs, (cert) => { |
no test coverage detected
searching dependent graphs…