SecureBlackbox 2020 Java Edition

Questions / Feedback?

CountersignatureValidated Event

Reports the completion of countersignature validation.

Syntax

public class DefaultCadesverifierEventListener implements CadesverifierEventListener {
  ...
  public void countersignatureValidated(CadesverifierCountersignatureValidatedEvent e) {}
  ...
}

public class CadesverifierCountersignatureValidatedEvent {
  public String issuerRDN;
  public byte[] serialNumber;
  public byte[] subjectKeyID;
  public int 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 Java Edition - Version 20.0 [Build 8156]