Skip to main content
All docs
V23.2

OcspClient.GetEncoded(Byte[], Byte[]) Method

Returns a DER- or BER-encoded OCSPResponse ASN.1 object.

Namespace: DevExpress.Office.DigitalSignatures

Assembly: DevExpress.Pdf.v23.2.Core.dll

NuGet Package: DevExpress.Pdf.Core

Declaration

public byte[] GetEncoded(
    byte[] checkCertificateBytes,
    byte[] issuerCertificateBytes
)

Parameters

Name Type Description
checkCertificateBytes Byte[]

A DER-encoded x509 certificate to check.

issuerCertificateBytes Byte[]

A DER-encoded x509 issuers certificate.

Returns

Type Description
Byte[]

DER- or BER-encoded OCSPResponse ASN.1 object or null.

Exceptions

Type Description
OcspException

Occurs if the OCSP server request failed.

WebException

Occurs if the OCSP server request failed.

Remarks

The GetEncoded method returns null if the OCSP server URI is null or the OCSP server URI is not added to the certificate.

See Also