Discuss this help topic in SecureBlackbox Forum

TElPKCS11CertStorage.Certificates

TElPKCS11CertStorage     See also     


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


Use this read-only property to get the certificate from the storage.

Declaration

[C#]
    TElX509Certificate Certificates[int Index];

[VB.NET]
    Property Certificates(ByVal Index As Integer) As TElX509Certificate

[Pascal]
    property Certificates[Index : integer] : TElX509Certificate;

[C++]
    TElX509Certificate* get_Certificates(int32_t Index);

[PHP]
    TElX509Certificate get_Certificates(integer $Index)

[Java]
    not available

Parameters

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

Description

    Use this property to access instances of TElX509Certificate objects that are stored in storage. Note, that original objects are returned, not copies, so you must not dispose of these objects. You should copy the certificate if necessary. Also, remember that most devices don't give away the private key, so you won't be able to save the private key of such certificates to the stream or buffer (although signing/decryption operations are possible if supported by the device itself).

See also:     Add     Remove     Count    

Discuss this help topic in SecureBlackbox Forum