Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.GetCertificateHash

TElX509Certificate     See also     


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


Computes certificate hash value.

Declaration

[C#]
    byte[] GetCertificateHash(int Alg);

[VB.NET]
    Function GetCertificateHash(ByVal Alg As Integer) As Byte()

[Pascal]
    function GetCertificateHash(Alg : integer): ByteArray;

[C++]
    void GetCertificateHash(int32_t Alg, std::vector<uint8_t> &OutResult);

[PHP]
    string GetCertificateHash(integer $Alg)

[Java]
    byte[] getCertificateHash(int Alg);

Parameters

  • Alg - specifies hash algorithm.

Possible hash algorithms

Return value

    Returns certificate hash value computed with the specified algorithm.

Description

    Use this method to obtain certificate hash value.

See also:     GetHashMD5     GetHashSHA1     GetHashSHA256     GetZIPCertIdentifier    

Discuss this help topic in SecureBlackbox Forum