SecureBlackbox 2020 Node.js Edition

Questions / Feedback?

CountersignatureValidated Event

Reports the completion of countersignature validation.

Syntax

cadesverifier.on('CountersignatureValidated', [callback])

Callback

The 'callback' is called when the 'CountersignatureValidated' event is emited.

function(e){ }

The argument 'e' has the following properties:

e.issuerRDN
e.serialNumber (buffer)
e.subjectKeyID (buffer)
e.validationResult

Remarks

This event marks the completion of a countersignature validation process.

Use IssuerRDN, SerialNumber, and/or SubjectKeyID to identify the signing certificate.

When validation is successful, ValidationResult returns 0. Any other value reports a failure.

cvtValid0The chain is valid

cvtValidButUntrusted1The chain is valid, but the root certificate is not trusted

cvtInvalid2The chain is not valid (some of certificates are revoked, expired, or contain an invalid signature)

cvtCantBeEstablished3The validity of the chain cannot be established because of missing or unavailable validation information (certificates, CRLs, or OCSP responses)

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Node.js Edition - Version 20.0 [Build 8165]