Nutrient Web SDK
    Preparing search index...

    Type Alias SignatureCallbackResponseRaw

    Represents the result of a signing process that returns a raw, (for instance, PKCS#1) signature.

    type SignatureCallbackResponseRaw = {
        certificates: ArrayBuffer[] | string[];
        ocspResponses?: OcspResponse[];
        signedData: ArrayBuffer;
        timestampResponse?: ArrayBuffer;
    }
    Index

    Properties

    certificates: ArrayBuffer[] | string[]

    The certificate chain to include in the digital signature. It can be a list of DER-encoded (represented as an ArrayBuffer) or PEM-encoded certificates.

    ocspResponses?: OcspResponse[]

    Optional array of OCSP responses. Required if the signature needs to be LTV enabled.

    signedData: ArrayBuffer

    The raw (for example, PKCS#1) signature as an ArrayBuffer.

    timestampResponse?: ArrayBuffer

    Optional timestamp token, DER-encoded. The format should be as specified by [RFC3161]https://www.rfc-editor.org/info/rfc3161. If no timestamp response is provided, the signing process will fallback to the optional signingData.timestamp field of NutrientViewer.SignaturePreparationData.