Home
last modified time | relevance | path

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

/third_party/node/lib/internal/tls/
Dsecure-context.js144 ticketKeys,
295 if (ticketKeys !== undefined && ticketKeys !== null) {
296 validateBuffer(ticketKeys, `${name}.ticketKeys`);
297 if (ticketKeys.byteLength !== 48) {
300 ticketKeys.byteLength,
303 context.setTicketKeys(ticketKeys);
/third_party/node/lib/
D_tls_wrap.js1270 if (options.ticketKeys)
1271 this.ticketKeys = options.ticketKeys;
1406 if (options.ticketKeys)
1407 this.ticketKeys = options.ticketKeys;
1430 ticketKeys: this.ticketKeys, property
1440 ticketKeys: this.getTicketKeys().toString('hex'),
1446 this.setTicketKeys(Buffer.from(data.ticketKeys, 'hex'));
1483 if (options.ticketKeys) this.ticketKeys = 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-connect-secure-context.js43 ticketKeys: null, property
Dtest-tls-ticket.js49 ticketKeys: keys property
/third_party/node/doc/api/
Dtls.md265 `ticketKeys` option of [`tls.createServer()`][]. The keys should be regularly
1948 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
2101 * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
2136 The `ticketKeys` options is automatically shared between `node:cluster` module
/third_party/node/doc/changelogs/
DCHANGELOG_IOJS.md2810 * Added a `ticketKeys` option for TLS ticket AES encryption keys setup.