Home
last modified time | relevance | path

Searched refs:SslCredentials (Results 1 – 15 of 15) sorted by relevance

/third_party/grpc/src/csharp/Grpc.Core.Api/
DSslCredentials.cs39 public sealed class SslCredentials : ChannelCredentials class
50 public SslCredentials() : this(null, null, null) in SslCredentials() method in Grpc.Core.SslCredentials
58 public SslCredentials(string rootCertificates) : this(rootCertificates, null, null) in SslCredentials() method in Grpc.Core.SslCredentials
67 public SslCredentials(string rootCertificates, KeyCertificatePair keyCertificatePair) : in SslCredentials() method in Grpc.Core.SslCredentials
79 …public SslCredentials(string rootCertificates, KeyCertificatePair keyCertificatePair, VerifyPeerCa… in SslCredentials() method in Grpc.Core.SslCredentials
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DTestCredentials.cs63 public static SslCredentials CreateSslCredentials() in CreateSslCredentials()
65 return new SslCredentials(File.ReadAllText(ClientCertAuthorityPath)); in CreateSslCredentials()
DSslCredentialsTest.cs58 …var clientCredentials = new SslCredentials(rootCert, clientAddKeyCertPair ? keyCertPair : null, ve… in InitClientAndServer()
DInteropClient.cs116 …dentials = options.UseTestCa.Value ? TestCredentials.CreateSslCredentials() : new SslCredentials(); in CreateCredentialsAsync()
/third_party/grpc/src/csharp/Grpc.Auth/
DGoogleGrpcCredentials.cs78 … return ChannelCredentials.Create(new SslCredentials(), googleCredential.ToCallCredentials()); in ToChannelCredentials()
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DChannelCredentialsTest.cs51 var creds = new SslCredentials(); in ChannelCredentials_NativeCredentialsAreReused()
/third_party/grpc/src/csharp/Grpc.Core/
DForwardedTypes.cs71 [assembly:TypeForwardedToAttribute(typeof(SslCredentials))]
/third_party/grpc/src/android/test/interop/app/src/main/cpp/
Dgrpc-interop.cc34 credentials = grpc::SslCredentials(grpc::SslCredentialsOptions()); in GetClient()
/third_party/grpc/test/cpp/util/
Dcli_credentials.cc139 return grpc::SslCredentials(ssl_creds_options); in GetChannelCredentials()
Dtest_credentials_provider.cc95 return grpc::SslCredentials(ssl_opts); in GetChannelCredentials()
Dcreate_test_channel.cc46 return grpc::SslCredentials(SslCredentialsOptions()); in GetChannelCredentials()
Dgrpc_tool_test.cc142 grpc::SslCredentials(grpc::SslCredentialsOptions(ssl_opts)); in GetChannelCredentials()
/third_party/grpc/include/grpcpp/security/
Dcredentials_impl.h165 std::shared_ptr<ChannelCredentials> SslCredentials(
Dcredentials.h182 std::shared_ptr<ChannelCredentials> SslCredentials(
/third_party/grpc/src/cpp/client/
Dsecure_credentials.cc120 std::shared_ptr<ChannelCredentials> SslCredentials( in SslCredentials() function