Hello,
Is it possible to have a ruby grpc server request and require a client certificate but not verify it? We have application logic that verifies the client certificate in other ways and so don't have a CA signing all the client certificates.
In C++, it looks like you can set GRPC_SSL_REQUEST_AND_REQUIRE_CLIENT_CERTIFICATE_BUT_DONT_VERIFY on grpc::SslServerCredentialsOptions, but that doesn't seem to be exposed in ruby.
On a related note, is it possible for the client (this time C++) to not verify the server certificate? I didn't find any obvious flags that I could set on grpc::SslCredentialsOptions (which is used to create the ChannelCredentials).
Thanks