Interface SigVerifyFailHandler


public interface SigVerifyFailHandler
Called to handle signature verification failures.

Signature verification failures may occur as a result of bad signatures being returned by the DSA (or one of the chained DSAs), or due to a bad signature being sent by us (the DUA), or both. Both errors may be generated in the situation where we send a bad signature, and the resulting error indication from the DSA is also signed with a bad signature.

Author:
jp
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    failure(Indication ind, boolean dsa, boolean dua)
    Called when a signature failure is detected in the given indication.
  • Method Details

    • failure

      void failure(Indication ind, boolean dsa, boolean dua)
      Called when a signature failure is detected in the given indication. This may be a successful Indication, or an Indication returned as part of an IndicationException or NoSuchEntryException.
      Parameters:
      ind - Indication containing affected results and further detail
      dsa - Has there been a DSA signature verification failure?
      dua - Has there been a DUA signature verification failure?