Discuss this help topic in SecureBlackbox Forum

TElXAdESProcessor.AddAttributeRevocationRefs

TElXAdESProcessor     See also     


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


Adds the Attribute Authorities revocation refs to the signature.

Declaration

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

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

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

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

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

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

Parameters

  • CRLs - specifies attribute certificate CRLs.
  • OCSPResponses - specifies attribute 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

    Use this method to add the Attribute Authorities revocation refs to the signature.

Discuss this help topic in SecureBlackbox Forum