Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.AddCompleteValidationData

TElCMSSignature     See also     


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


This method adds a complete validation data set required to validate the signature.

Declaration

[C#]
    void AddCompleteValidationData(TElCustomCertStorage Chain, TElMemoryCRLStorage CRLs, ArrayList OCSPResponses, bool ReferencesOnly);

[VB.NET]
    Sub AddCompleteValidationData(ByVal Chain As TElCustomCertStorage, ByVal CRLs As TElMemoryCRLStorage, ByVal OCSPResponses As ArrayList, ByVal ReferencesOnly As Boolean)

[Pascal]
    procedure AddCompleteValidationData(Chain : TElCustomCertStorage; CRLs : TElMemoryCRLStorage; OCSPResponses : TList; ReferencesOnly : boolean = True);

[C++]
    void AddCompleteValidationData(TElCustomCertStorage &Chain, TElMemoryCRLStorage &CRLs, TList &OCSPResponses, bool ReferencesOnly);
    void AddCompleteValidationData(TElCustomCertStorage *Chain, TElMemoryCRLStorage *CRLs, TList *OCSPResponses, bool ReferencesOnly);

[PHP]
    void AddCompleteValidationData(TElCustomCertStorage $Chain, TElMemoryCRLStorage $CRLs, TList $OCSPResponses, bool $ReferencesOnly)

[Java]
    void addCompleteValidationData(TElCustomCertStorage Chain, TElMemoryCRLStorage CRLs, ArrayList OCSPResponses, boolean ReferencesOnly);

Parameters

  • Chain - validation certificate chain
  • CRLs - CRLs with revocation information
  • OCSPResponses - OCSP responses which provide status information on signing certificates
  • ReferencesOnly - specifies, whether only the references to revocation data are provided

Description

    Use this method to add a complete set of data which is required to validate the signature.

See also:     AddCompleteValidationDataItem     Validate    

Discuss this help topic in SecureBlackbox Forum