Discuss this help topic in SecureBlackbox Forum

TElCMSSignerIdentifier.Import

TElCMSSignerIdentifier     


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


This method imports signer identifier data from the X.509 certificate.

Declaration

[C#]
    void Import(TElX509Certificate Cert, int HashAlgorithm);

[VB.NET]
    Sub Import(ByVal Cert As TElX509Certificate, ByVal HashAlgorithm As Integer)

[Pascal]
    procedure Import(Cert: TElX509Certificate; HashAlgorithm : integer = SB_ALGORITHM_DGST_SHA1);

[C++]
    void Import(TElX509Certificate &Cert, int32_t HashAlgorithm);
    void Import(TElX509Certificate *Cert, int32_t HashAlgorithm);

[PHP]
    void Import(TElX509Certificate $Cert, integer $HashAlgorithm)

[Java]
    void import(TElX509Certificate Cert, int HashAlgorithm);

Parameters

  • Cert - X.509 certificate
  • HashAlgorithm - algorithm used for hashing

Possible algorithms:

Description

    Use this method to import issuer name, certificate serial number, and hash value from the X.509 certificate.

Discuss this help topic in SecureBlackbox Forum