Discuss this help topic in SecureBlackbox Forum

TElSSLCertURL.Hash

TElSSLCertURL     See also     


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


This property specifies the hash of the certificate.

Declaration

[C#]
    byte[] Hash;

[VB.NET]
    Property Hash As Byte()

[Pascal]
    property Hash : ByteArray;

[C++]
    void get_Hash(std::vector<uint8_t> &OutResult);
    void set_Hash(const std::vector<uint8_t> &Value);

[PHP]
    string get_Hash()
    void set_Hash(array of byte|string|NULL $Value)

[Java]
    byte[] getHash();
    void setHash(byte[] Value);

Description

    Use this property to specify (on the client side) or obtain (on the server-side) the hash of the certificate, referenced by URL. The hash is always calculated using SHA1 algorithm.

See also:     URL    

Discuss this help topic in SecureBlackbox Forum