Discuss this help topic in SecureBlackbox Forum

TElXAdESProcessor.AddCompleteRevocationRefs

TElXAdESProcessor     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds the CompleteRevocationRefs element to the signature.

Declaration

[C#]
    void AddCompleteRevocationRefs(TElCustomCRLStorage CRLs, ArrayList OCSPResponses);
    void AddCompleteRevocationRefs(TElCustomCRLStorage CRLs, ArrayList OCSPResponses, short DigestMethod, bool ResponderIdByKey, TElXMLCustomFormatter Formatter);

[VB.NET]
    Sub AddCompleteRevocationRefs(ByVal CRLs As TElCustomCRLStorage, ByVal OCSPResponses As ArrayList)
    Sub AddCompleteRevocationRefs(ByVal CRLs As TElCustomCRLStorage, ByVal OCSPResponses As ArrayList, ByVal DigestMethod As Short, ByVal ResponderIdByKey As Boolean, ByVal Formatter As TElXMLCustomFormatter)

[Pascal]
    procedure AddCompleteRevocationRefs(CRLs : TElCustomCRLStorage; OCSPResponses : TList);
    procedure AddCompleteRevocationRefs(CRLs : TElCustomCRLStorage; OCSPResponses : TList; DigestMethod : TElXMLDigestMethod; ResponderIdByKey : boolean; Formatter : TElXMLCustomFormatter);

[C++]
    void AddCompleteRevocationRefs(TElCustomCRLStorage &CRLs, TList &OCSPResponses);
    void AddCompleteRevocationRefs(TElCustomCRLStorage *CRLs, TList *OCSPResponses);
    void AddCompleteRevocationRefs(TElCustomCRLStorage &CRLs, TList &OCSPResponses, TElXMLDigestMethod DigestMethod, bool ResponderIdByKey, TElXMLCustomFormatter &Formatter);
    void AddCompleteRevocationRefs(TElCustomCRLStorage *CRLs, TList *OCSPResponses, TElXMLDigestMethod DigestMethod, bool ResponderIdByKey, TElXMLCustomFormatter *Formatter);

[PHP]
    void AddCompleteRevocationRefs(TElCustomCRLStorage $CRLs, TList $OCSPResponses)
    void AddCompleteRevocationRefs(TElCustomCRLStorage $CRLs, TList $OCSPResponses, integer $DigestMethod, bool $ResponderIdByKey, TElXMLCustomFormatter $Formatter)

[Java]
    void addCompleteRevocationRefs(TElCustomCRLStorage CRLs, ArrayList OCSPResponses);
    void addCompleteRevocationRefs(TElCustomCRLStorage CRLs, ArrayList OCSPResponses, TElXMLDigestMethod DigestMethod, boolean ResponderIdByKey, TElXMLCustomFormatter Formatter);

Parameters

  • CRLs - specifies signing certificate CRLs.
  • OCSPResponses - specifies signing certificate OCSP responses.
  • DigestMethod - specifies the digest method used to compute digest values for the refs.
  • ResponderIdByKey - specifies whether responder is identified by key (True, or by name (False).
  • Formatter - XML formatter. This parameter is for internal use only. Set this parameter to nil/null/Nothing.

Digest methods:

Description

    Call this method to add the references to the full set of the complete revocation information needed to validate the signer's and the CA certificates.

See also:     CompleteRevocationRefs     RevocationValues    

Discuss this help topic in SecureBlackbox Forum