Discuss this help topic in SecureBlackbox Forum

TElMessageVerifier.CertIDs

TElMessageVerifier     See also     


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


This read-only property contains identifiers of certificates which were used to sign 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 the list.

Description

    Use this property to get identifiers of certificates which were used for message signing. Identifier represents an <Issuer, SerialNumber> pair.
     Note, you may access this property even if the verification process failed (when no appropriate certificate was found in the certificate storage or CertStorage property was set to null (nil, Nothing)). Also, you may browse this property after successful execution of this routine to identify the certificate which was used to verify the message.

See also:     CertIDCount    

Discuss this help topic in SecureBlackbox Forum