Home
last modified time | relevance | path

Searched refs:rootCertificates (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-tls-root-certificates.js8 assert(Array.isArray(tls.rootCertificates));
9 assert(tls.rootCertificates.length > 0);
12 assert.strictEqual(tls.rootCertificates, tls.rootCertificates);
15 assert.throws(() => tls.rootCertificates[0] = 0, /TypeError/);
16 assert.throws(() => tls.rootCertificates.sort(), /TypeError/);
19 assert.throws(() => tls.rootCertificates = 0, /TypeError/);
22 assert.strictEqual(tls.rootCertificates.length,
23 new Set(tls.rootCertificates).size);
25 assert(tls.rootCertificates.every((s) => {
29 assert(tls.rootCertificates.every((s) => {
/third_party/node/lib/
Dtls.js97 let rootCertificates; variable
100 rootCertificates = ObjectFreeze(getRootCertificates());
108 if (!rootCertificates) cacheRootCertificates();
109 return rootCertificates;
/third_party/node/doc/api/
Dtls.md1637 See also [`tls.rootCertificates`][].
1958 ## `tls.rootCertificates`
2062 [`tls.rootCertificates`]: #tls_tls_rootcertificates
/third_party/node/doc/changelogs/
DCHANGELOG_V13.md245 …ejs/node/commit/2248ba760b)] - **src**: fix missing extra ca in tls.rootCertificates (Eric Bickle)…
DCHANGELOG_V14.md3621 …//github.com/nodejs/node/commit/7c87fc1c48)] - **doc**: correct tls.rootCertificates to match impl…
3751 …t/3f1c756f89)] - ***Revert*** "**src**: fix missing extra ca in tls.rootCertificates" (Eric Bickle…