/third_party/node/test/parallel/ |
D | test-tls-root-certificates.js | 8 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/ |
D | SslCredentials.cs | 41 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()
|
D | ChannelCredentialsConfiguratorBase.cs | 37 …public abstract void SetSslCredentials(object state, string rootCertificates, KeyCertificatePair k… in SetSslCredentials() argument
|
/third_party/grpc/src/csharp/Grpc.Core/ |
D | ServerCredentials.cs | 120 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/ |
D | DefaultChannelCredentialsConfigurator.cs | 55 …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/ |
D | tls.js | 97 let rootCertificates; variable 100 rootCertificates = ObjectFreeze(getRootCertificates()); 108 if (!rootCertificates) cacheRootCertificates(); 109 return rootCertificates;
|
/third_party/node/doc/api/ |
D | tls.md | 1637 See also [`tls.rootCertificates`][]. 1958 ## `tls.rootCertificates` 2062 [`tls.rootCertificates`]: #tls_tls_rootcertificates
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V13.md | 245 …ejs/node/commit/2248ba760b)] - **src**: fix missing extra ca in tls.rootCertificates (Eric Bickle)…
|
D | CHANGELOG_V14.md | 3510 …//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…
|