PemKeyCertPair constructor

PemKeyCertPair(
  1. String privateKey,
  2. String certChain
)

Creates a new instance.

  • privateKey Server's private key in PEM format.
  • certChain Server's certificate chain in PEM format.

Implementation

PemKeyCertPair(this.privateKey, this.certChain);