Lines Matching refs:ca
123 // Format ['key', 'cert', 'ca']
132 ].forEach(([key, cert, ca]) => {
133 tls.createServer({ key, cert, ca });
137 // Format ['key', 'cert', 'ca']
144 ].forEach(([key, cert, ca, index]) => {
145 const val = index === undefined ? ca : ca[index];
147 tls.createServer({ key, cert, ca });
151 message: 'The "options.ca" property must be of type string or an instance' +
158 // Format ['key', 'cert', 'ca']
165 ].forEach(([key, cert, ca]) => {
166 tls.createSecureContext({ key, cert, ca });