Lines Matching refs:client
11 const client = keys.ec10;
21 split(client.cert, client);
33 client: {
34 key: client.key,
35 cert: client.cert,
42 ca: client.ca,
50 // As above, but without requesting client's cert.
52 client: {
59 ca: client.ca,
66 // Request cert from TLS1.2 client that doesn't have one.
68 client: {
76 ca: client.ca,
82 assert.strictEqual(pair.client.err.code,
87 // Request cert from TLS1.3 client that doesn't have one.
89 client: {
96 ca: client.ca,
103 // TLS1.3 client completes handshake before server, and its only after the
105 // and sends a fatal Alert to the client that the client discovers there has
107 pair.client.conn.once('error', common.mustCall((err) => {
116 client: {
117 key: client.key,
118 cert: client.single,
125 ca: [client.ca, client.subca],
135 client: {
136 key: client.key,
137 cert: client.single,
144 ca: client.ca + '\n' + client.subca,
154 client: {
155 key: client.key,
156 cert: client.single,
163 ca: [client.ca + '\n' + client.subca],
173 client: {
186 // Fail to complete client's chain.
188 client: {
189 key: client.key,
190 cert: client.single,
197 ca: client.ca,
201 assert.ifError(pair.client.error);
209 client: {
223 client: {
237 client: {
250 // Fail to complete client's chain.
252 client: {
253 key: client.key,
254 cert: client.single,
261 ca: client.ca,
269 // Fail to find CA for client.
271 client: {
272 key: client.key,
273 cert: client.cert,
289 client: {
290 key: client.key,
291 cert: client.cert,
298 ca: client.ca,
308 client: {
309 key: client.key,
310 cert: client.cert,
317 ca: client.ca.replace(/CERTIFICATE/g, 'TRUSTED CERTIFICATE'),
327 client: {
328 key: client.key,
329 cert: client.cert,
336 ca: client.ca,
346 client: {
347 key: client.key,
348 cert: client.cert,
355 ca: client.ca.replace(/CERTIFICATE/g, 'X509 CERTIFICATE'),