GRPC C++
1.30.0
|
Options used to build SslCredentials. More...
#include <credentials_impl.h>
Data Fields | |
grpc::string | pem_root_certs |
The buffer containing the PEM encoding of the server root certificates. More... | |
grpc::string | pem_private_key |
The buffer containing the PEM encoding of the client's private key. More... | |
grpc::string | pem_cert_chain |
The buffer containing the PEM encoding of the client's certificate chain. More... | |
Options used to build SslCredentials.
grpc::string grpc_impl::SslCredentialsOptions::pem_cert_chain |
The buffer containing the PEM encoding of the client's certificate chain.
This parameter can be empty if the client does not have a certificate chain.
grpc::string grpc_impl::SslCredentialsOptions::pem_private_key |
The buffer containing the PEM encoding of the client's private key.
This parameter can be empty if the client does not have a private key.
grpc::string grpc_impl::SslCredentialsOptions::pem_root_certs |
The buffer containing the PEM encoding of the server root certificates.
If this parameter is empty, the default roots will be used. The default roots can be overridden using the GRPC_DEFAULT_SSL_ROOTS_FILE_PATH environment variable pointing to a file on the file system containing the roots.