Home
last modified time | relevance | path

Searched refs:ticketKeys (Results 1 – 6 of 6) sorted by relevance

/third_party/node/lib/
D_tls_wrap.js1180 if (options.ticketKeys)
1181 this.ticketKeys = options.ticketKeys;
1325 if (options.ticketKeys)
1326 this.ticketKeys = options.ticketKeys;
1349 ticketKeys: this.ticketKeys, property
1359 ticketKeys: this.getTicketKeys().toString('hex')
1365 this.setTicketKeys(Buffer.from(data.ticketKeys, 'hex'));
1402 if (options.ticketKeys) this.ticketKeys = options.ticketKeys;
D_tls_common.js298 if (options.ticketKeys) {
299 c.context.setTicketKeys(options.ticketKeys);
/third_party/node/test/parallel/
Dtest-tls-basic-validations.js71 () => tls.createServer({ ticketKeys: 'abcd' }), property
78 assert.throws(() => tls.createServer({ ticketKeys: Buffer.alloc(0) }), property
Dtest-tls-ticket.js49 ticketKeys: keys property
/third_party/node/doc/api/
Dtls.md236 `ticketKeys` option of [`tls.createServer()`][]. The keys should be regularly
1729 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudo-random
1872 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudo-random
1905 The `ticketKeys` options is automatically shared between `cluster` module
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md2767 * Added a `ticketKeys` option for TLS ticket AES encryption keys setup.