Discuss this help topic in SecureBlackbox Forum

TElPKCS11CertStorage.Keys

TElPKCS11CertStorage     See also     


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


This property provides access to keys stored on the cryptotoken.

Declaration

[C#]
    TElKeyMaterial Keys[int Index];

[VB.NET]
    Property Keys(ByVal Index As Integer) As TElKeyMaterial

[Pascal]
    property Keys[Index : integer] : TElKeyMaterial;

[C++]
    TElKeyMaterial* get_Keys(int32_t Index);

[PHP]
    TElKeyMaterial get_Keys(integer $Index)

[Java]
    not available

Parameters

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

Description

    Use this property to accesskeys stored on the security token. Note, that most devices don't give away the private key, so you won't be able to save the private key to the stream or buffer (although signing/decryption operations are possible if supported by the device itself).

See also:     AddKey     RemoveKey     KeyCount    

Discuss this help topic in SecureBlackbox Forum