Lines Matching refs:tlsSocket
19 const tlsSocket = new tls.TLSSocket(s, { constant
26 tlsSocket.exportKeyingMaterial(128, 'label');
33 tlsSocket.on('secure', common.mustCall(() => {
36 const validKeyingMaterial = tlsSocket.exportKeyingMaterial(128, label);
39 const validKeyingMaterialWithContext = tlsSocket
46 const validKeyingMaterialWithEmptyContext = tlsSocket
51 tlsSocket.exportKeyingMaterial(128, label, 'stringAsContextNotSupported');
58 tlsSocket.exportKeyingMaterial(128, label, 1234);
65 tlsSocket.exportKeyingMaterial(10, null);
72 tlsSocket.exportKeyingMaterial('length', 1234);
79 tlsSocket.exportKeyingMaterial(-3, 'a');
86 tlsSocket.exportKeyingMaterial(0, 'a');
92 tlsSocket.end();