Skip to main content
All docs
V25.1
  • IOcspClient.GetEncoded(Byte[], Byte[]) Method

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

    Namespace: DevExpress.Office.DigitalSignatures

    Assembly: DevExpress.Pdf.v25.1.Core.dll

    NuGet Package: DevExpress.Pdf.Core

    Declaration

    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[]

    A 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