Discuss this help topic in SecureBlackbox Forum

TElPKCS11CertStorage.KeyIDs

TElPKCS11CertStorage     See also     


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


This property provides access to the list of key IDs.

Declaration

[C#]
    byte[] KeyIDs[int Index];

[VB.NET]
    Property KeyIDs(ByVal Index As Integer) As Byte()

[Pascal]
    property KeyIDs[Index : integer] : ByteArray;

[C++]
    void get_KeyIDs(int32_t Index, std::vector<uint8_t> &OutResult);
    void set_KeyIDs(int32_t Index, const std::vector<uint8_t> &Value);

[PHP]
    string get_KeyIDs(integer $Index)
    void set_KeyIDs(integer $Index, array of byte|string|NULL $Value)

[Java]
    not available

Parameters

  • Index - The index of the desired key ID in the list. The first item has Index=0, the second has Index=1 and so on.

Description

    Use this property to get the ID of the desired key.

See also:     Keys    

Discuss this help topic in SecureBlackbox Forum