Lines Matching refs:client
26 const client = new TestTLSSocket(server_cert);
28 client.connect({
32 const ch = client.createClientHello();
33 client.write(ch);
36 client.once('data', common.mustCall((buf) => {
39 remaining = client.parseTLSFrame(remaining);
42 const cke = client.createClientKeyExchange();
43 const finished = client.createFinished();
44 const ill = client.createIllegalHandshake();
48 client.encrypt(finished),
49 client.encrypt(ill),
51 client.write(frames, common.mustCall(() => {
52 client.end();