CsrResult record

Represents the result of creating a Certificate Signing Request (CSR), including the PEM-encoded CSR and the private key.

public record CsrResult

Public Members

name description
CsrResult(…) Represents the result of creating a Certificate Signing Request (CSR), including the PEM-encoded CSR and the private key.
CsrDer { get; set; } The DER-encoded CSR bytes.
CsrPem { get; set; } The PEM-encoded CSR string.
PrivateKey { get; set; } The private key associated with the CSR.
PrivateKeyDer { get; set; } The DER-encoded private key bytes.
PrivateKeyPem { get; set; } The PEM-encoded private key string.
PrivateKeyPemEncrypted { get; set; } The PEM-encoded encrypted private key string, if an encryption password was provided; otherwise, null.
PublicKeyDer { get; set; } The DER-encoded public key bytes.
PublicKeyPem { get; set; } The PEM-encoded public key string.

See Also