Discuss this help topic in SecureBlackbox Forum

TElCMSCRLValidatedID.Import

TElCMSCRLValidatedID     


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


This method imports CRL identifier and hash value from the given CRL.

Declaration

[C#]
    void Import(TElCertificateRevocationList CRL, int HashAlgorithm);

[VB.NET]
    Sub Import(ByVal CRL As TElCertificateRevocationList, ByVal HashAlgorithm As Integer)

[Pascal]
    procedure Import(CRL: TElCertificateRevocationList; HashAlgorithm : integer = SB_ALGORITHM_DGST_SHA1);

[C++]
    void Import(TElCertificateRevocationList &CRL, int32_t HashAlgorithm);
    void Import(TElCertificateRevocationList *CRL, int32_t HashAlgorithm);

[PHP]
    void Import(TElCertificateRevocationList $CRL, integer $HashAlgorithm)

[Java]
    void import(TElCertificateRevocationList CRL, int HashAlgorithm);

Parameters

  • CRL - a CRL for which the identifier and hash are required
  • HashAlgorithm - algorithm used for hashing

Possible algorithms:

Description

    Use this method to load CRL identifier and hash value from the given CRL.

Discuss this help topic in SecureBlackbox Forum