Re: [grpc-io] Re: [C++] How to simulate GO tls config InsecureSkipVerify

2018-04-09 Thread 'Eric Anderson' via grpc.io
There's a lot in this thread... On Thursday, March 29, 2018 at 3:36:59 PM UTC-7, David Audrain wrote: > > The go version uses the following workaround to skip the verification: > > grpcOpts := []grpc.DialOption{} > creds := credentials.NewTLS({InsecureSkipVerify: * > insecureSkipVerify})

Re: [grpc-io] Re: [C++] How to simulate GO tls config InsecureSkipVerify

2018-04-06 Thread David Audrain
Hi Noah, I've been able to generate certificates and key that work ok with *greeter_tls_client* and *greeter_tls_server*. One needs to run *certs.sh* to generate root, intermediate and server keys, signing requests and certificates. The cnf files are expect to be along *certs.sh*. And

Re: [grpc-io] Re: [C++] How to simulate GO tls config InsecureSkipVerify

2018-04-06 Thread 'Noah Eisen' via grpc.io
I am linking in Eric (ej...@google.com) Looks like #3992 added the example of generating credentials. Any input on why that won't work for a C++ TLS greeter service (copying the github creds will work) On Wed, Apr 4, 2018 at 2:02 PM David Audrain

[grpc-io] Re: [C++] How to simulate GO tls config InsecureSkipVerify

2018-04-04 Thread David Audrain
I've implemented a tls version of helloworld/greeter_client and server .

[grpc-io] Re: [C++] How to simulate GO tls config InsecureSkipVerify

2018-04-04 Thread ncteisen via grpc.io
That seems like the right way to go about it. Are you running into trouble? what are the errors? On Thursday, March 29, 2018 at 3:36:59 PM UTC-7, David Audrain wrote: > > Hi, > > My C++ Client tries to connect my dev server using TLS but connection > keeps failing while checking the dev server