Searched refs:ticketKeys (Results 1 – 7 of 7) sorted by relevance
144 ticketKeys,295 if (ticketKeys !== undefined && ticketKeys !== null) {296 validateBuffer(ticketKeys, `${name}.ticketKeys`);297 if (ticketKeys.byteLength !== 48) {300 ticketKeys.byteLength,303 context.setTicketKeys(ticketKeys);
1270 if (options.ticketKeys)1271 this.ticketKeys = options.ticketKeys;1406 if (options.ticketKeys)1407 this.ticketKeys = options.ticketKeys;1430 ticketKeys: this.ticketKeys, property1440 ticketKeys: this.getTicketKeys().toString('hex'),1446 this.setTicketKeys(Buffer.from(data.ticketKeys, 'hex'));1483 if (options.ticketKeys) this.ticketKeys = options.ticketKeys;
71 () => tls.createServer({ ticketKeys: 'abcd' }), property78 assert.throws(() => tls.createServer({ ticketKeys: Buffer.alloc(0) }), { property
43 ticketKeys: null, property
49 ticketKeys: keys property
265 `ticketKeys` option of [`tls.createServer()`][]. The keys should be regularly1948 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom2101 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom2136 The `ticketKeys` options is automatically shared between `node:cluster` module
2810 * Added a `ticketKeys` option for TLS ticket AES encryption keys setup.