public sealed class SSLClientKeypair : IMessage<SSLClientKeypair>, IEquatable<SSLClientKeypair>, IDeepCloneable<SSLClientKeypair>, IBufferMessage, IMessageReference documentation and code samples for the Chronicle v1 API class SSLClientKeypair.
An SSL client certificate keypair.
Implements
IMessageSSLClientKeypair, IEquatableSSLClientKeypair, IDeepCloneableSSLClientKeypair, IBufferMessage, IMessageNamespace
Google.Cloud.Chronicle.V1Assembly
Google.Cloud.Chronicle.V1.dll
Constructors
SSLClientKeypair()
public SSLClientKeypair()SSLClientKeypair(SSLClientKeypair)
public SSLClientKeypair(SSLClientKeypair other)| Parameter | |
|---|---|
| Name | Description |
other |
SSLClientKeypair |
Properties
EncodedPrivateKey
public string EncodedPrivateKey { get; set; }The encoded private key. The string should be a private key in PEM format, and should include the begin header and end footer lines. It may also include newlines.
Example: -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,F23074E02CF47304
<REDACTED> -----END RSA PRIVATE KEY-----
| Property Value | |
|---|---|
| Type | Description |
string |
|
SslCertificate
public string SslCertificate { get; set; }The encoded SSL certificate. The string should be an SSL certificate in PEM format, and should include the begin header and end footer lines. It may also include newlines.
Example: -----BEGIN CERTIFICATE----- <REDACTED> -----END CERTIFICATE-----
| Property Value | |
|---|---|
| Type | Description |
string |
|