Discuss this help topic in SecureBlackbox Forum

TElXAdESProcessor.AddRevocationValues

TElXAdESProcessor     See also     


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


Adds RevocationValues element to the signature.

Declaration

[C#]
    void AddRevocationValues(TElCustomCRLStorage CRLs, ArrayList OCSPResponses);
    void AddRevocationValues(TElCustomCRLStorage CRLs, ArrayList OCSPResponses, TElXMLCustomFormatter Formatter);

[VB.NET]
    Sub AddRevocationValues(ByVal CRLs As TElCustomCRLStorage, ByVal OCSPResponses As ArrayList)
    Sub AddRevocationValues(ByVal CRLs As TElCustomCRLStorage, ByVal OCSPResponses As ArrayList, ByVal Formatter As TElXMLCustomFormatter)

[Pascal]
    procedure AddRevocationValues(CRLs : TElCustomCRLStorage; OCSPResponses : TList);
    procedure AddRevocationValues(CRLs : TElCustomCRLStorage; OCSPResponses : TList; Formatter : TElXMLCustomFormatter);

[C++]
    void AddRevocationValues(TElCustomCRLStorage &CRLs, TList &OCSPResponses);
    void AddRevocationValues(TElCustomCRLStorage *CRLs, TList *OCSPResponses);
    void AddRevocationValues(TElCustomCRLStorage &CRLs, TList &OCSPResponses, TElXMLCustomFormatter &Formatter);
    void AddRevocationValues(TElCustomCRLStorage *CRLs, TList *OCSPResponses, TElXMLCustomFormatter *Formatter);

[PHP]
    void AddRevocationValues(TElCustomCRLStorage $CRLs, TList $OCSPResponses)
    void AddRevocationValues(TElCustomCRLStorage $CRLs, TList $OCSPResponses, TElXMLCustomFormatter $Formatter)

[Java]
    void addRevocationValues(TElCustomCRLStorage CRLs, ArrayList OCSPResponses);
    void addRevocationValues(TElCustomCRLStorage CRLs, ArrayList OCSPResponses, TElXMLCustomFormatter Formatter);

Parameters

  • CRLs - specifies signing certificate CRLs.
  • OCSPResponses - specifies signing certificate OCSP responses.
  • Formatter - XML formatter. This parameter is for internal use only. Set this parameter to nil/null/Nothing.

Description

    Call this method to add revocation values to the signature.

See also:     RevocationValues     AddCertificateValues    

Discuss this help topic in SecureBlackbox Forum