Discuss this help topic in SecureBlackbox Forum

TElMessageDecryptor.CertIDs

TElMessageDecryptor     See also     


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


This read-only property contains identifiers of certificates which were used to encrypt the message.

Declaration

[C#]
    TElPKCS7Issuer CertIDs[int Index];

[VB.NET]
    Property CertIDs(ByVal Index As Integer) As TElPKCS7Issuer

[Pascal]
    property CertIDs[Index : integer] : TElPKCS7Issuer;

[C++]
    TElPKCS7Issuer* get_CertIDs(int32_t Index);

[PHP]
    TElPKCS7Issuer get_CertIDs(integer $Index)

[Java]
    not available

Parameters

  • Index - index of the certificate identifier in list.

Description

    Use this property to get identifiers of certificates which were used fo message encryption. Identifier represents <Issuer, SerialNumber> pair.
    Note, you may access this property even if the decryption process failed (when no appropriate certificate was found in the certificate storage or the storage was not specified). Also, you can check this property after successful execution of Decrypt method to identify the certificate which was used to decrypt the message.

See also:     CertIDCount    

Discuss this help topic in SecureBlackbox Forum