Lines Matching refs:cert
25 const certBuff = fixtures.readKey('agent1-cert.pem');
27 const certBuff2 = fixtures.readKey('ec-cert.pem');
28 const caCert = fixtures.readKey('ca1-cert.pem');
29 const caCert2 = fixtures.readKey('ca2-cert.pem');
44 // Format ['key', 'cert']
65 ].forEach(([key, cert]) => {
66 https.createServer({ key, cert });
70 // Format ['key', 'cert', 'expected message']
84 ].forEach(([key, cert, index]) => {
87 https.createServer({ key, cert });
110 ].forEach(([key, cert, index]) => {
111 const val = index === undefined ? cert : cert[index];
113 https.createServer({ key, cert });
117 message: 'The "options.cert" property must be of type string or an ' +
124 // Format ['key', 'cert', 'ca']
133 ].forEach(([key, cert, ca]) => {
134 https.createServer({ key, cert, ca });
138 // Format ['key', 'cert', 'ca']
145 ].forEach(([key, cert, ca, index]) => {
148 https.createServer({ key, cert, ca });