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 tls.createServer({ key, cert });
70 // Format ['key', 'cert', 'expected message']
83 ].forEach(([key, cert, index]) => {
86 tls.createServer({ key, cert });
109 ].forEach(([key, cert, index]) => {
110 const val = index === undefined ? cert : cert[index];
112 tls.createServer({ key, cert });
116 message: 'The "options.cert" property must be of type string or an ' +
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]) => {
147 tls.createServer({ key, cert, ca });
158 // Format ['key', 'cert', 'ca']
165 ].forEach(([key, cert, ca]) => {
166 tls.createSecureContext({ key, cert, ca });