SslClientCredentialsOptions constructor
- String pemRootCerts,
- String pemPrivateKey,
- String pemCertChain
Creates a new instance.
pemRootCertsThe PEM-encoded root certificates used to verify the server.pemPrivateKeyThe client's private key in PEM format. It must be non-empty for mutual TLS. Else must be set to empty string.pemCertChainThe client's certificate chain in PEM format. It must be non-empty for mutual TLS. Else must be set to empty string.
Implementation
SslClientCredentialsOptions(this.pemRootCerts, this.pemPrivateKey, this.pemCertChain);