Discuss this help topic in SecureBlackbox Forum

TElAuthorityKeyIdentifierExtension.KeyIdentifier

TElAuthorityKeyIdentifierExtension     See also     


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


This property contains the key identifier of issuer's public key.

Declaration

[C#]
    byte[] KeyIdentifier;

[VB.NET]
    Property KeyIdentifier As Byte()

[Pascal]
    property KeyIdentifier : string;

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

[PHP]
    string get_KeyIdentifier()
    void set_KeyIdentifier(array of byte|string|NULL $Value)

[Java]
    byte[] getKeyIdentifier();
    void setKeyIdentifier(byte[] V);

Parameters

  • V -

Description

    This property contains the key identifier of issuer's certificate. Key identifier is usually a fingerprint (message digest), calculated from issuer's public key.

    When generating new certificate, leave this field empty if you want SecureBlackbox to generate the key identifier, or set it to your own value otherwise. SecureBlackbox uses SHA-1 algorithm for generation of a key identifier.

See also:     AuthorityCertIssuer     AuthorityCertSerial    

Discuss this help topic in SecureBlackbox Forum