Home
last modified time | relevance | path

Searched refs:rootCertificates (Results 1 – 9 of 9) 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/grpc/src/csharp/Grpc.Core.Api/
DSslCredentials.cs41 readonly string rootCertificates; field in Grpc.Core.SslCredentials
58 public SslCredentials(string rootCertificates) : this(rootCertificates, null, null) in SslCredentials() argument
67 public SslCredentials(string rootCertificates, KeyCertificatePair keyCertificatePair) : in SslCredentials() argument
68 this(rootCertificates, keyCertificatePair, null) in SslCredentials()
79 …public SslCredentials(string rootCertificates, KeyCertificatePair keyCertificatePair, VerifyPeerCa… in SslCredentials() argument
81 this.rootCertificates = rootCertificates; in SslCredentials()
93 return this.rootCertificates;
115 … configurator.SetSslCredentials(state, rootCertificates, keyCertificatePair, verifyPeerCallback); in InternalPopulateConfiguration()
DChannelCredentialsConfiguratorBase.cs37 …public abstract void SetSslCredentials(object state, string rootCertificates, KeyCertificatePair k… in SetSslCredentials() argument
/third_party/grpc/src/csharp/Grpc.Core/
DServerCredentials.cs120 readonly string rootCertificates; field in Grpc.Core.SslServerCredentials
129 …entials(IEnumerable<KeyCertificatePair> keyCertificatePairs, string rootCertificates, bool forceCl… in SslServerCredentials() argument
130 …: this(keyCertificatePairs, rootCertificates, forceClientAuth ? SslClientCertificateRequestType.Re… in SslServerCredentials()
140 …entials(IEnumerable<KeyCertificatePair> keyCertificatePairs, string rootCertificates, SslClientCer… in SslServerCredentials() argument
147 GrpcPreconditions.CheckNotNull(rootCertificates, in SslServerCredentials()
150 this.rootCertificates = rootCertificates; in SslServerCredentials()
182 return this.rootCertificates;
218 …return ServerCredentialsSafeHandle.CreateSslCredentials(rootCertificates, certChains, keys, client… in ToNativeCredentials()
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DDefaultChannelCredentialsConfigurator.cs55 …public override void SetSslCredentials(object state, string rootCertificates, KeyCertificatePair k… in SetSslCredentials() argument
60 … () => CreateNativeSslCredentials(rootCertificates, keyCertificatePair, verifyPeerCallback)); in SetSslCredentials()
71 …private ChannelCredentialsSafeHandle CreateNativeSslCredentials(string rootCertificates, KeyCertif… in CreateNativeSslCredentials() argument
78 …return ChannelCredentialsSafeHandle.CreateSslCredentials(rootCertificates, keyCertificatePair, ver… in CreateNativeSslCredentials()
/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.md3510 …//github.com/nodejs/node/commit/7c87fc1c48)] - **doc**: correct tls.rootCertificates to match impl…
3640 …t/3f1c756f89)] - ***Revert*** "**src**: fix missing extra ca in tls.rootCertificates" (Eric Bickle…