Discuss this help topic in SecureBlackbox Forum

TElClientSSLExtensions.AcceptableCAs

TElClientSSLExtensions     See also     


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


Contains a list of certification authorities acceptable by the server during client authentication.

Declaration

[C#]
    TElRelativeDistinguishedName AcceptableCAs[int Index];

[VB.NET]
    Property AcceptableCAs(ByVal Index As Integer) As TElRelativeDistinguishedName

[Pascal]
    property AcceptableCAs[Index : integer] : TElRelativeDistinguishedName;

[C++]
    TElRelativeDistinguishedName* get_AcceptableCAs(int32_t Index);

[PHP]
    TElRelativeDistinguishedName get_AcceptableCAs(integer $Index)

[Java]
    not available

Parameters

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

Description

    Use this indexed property to access the list of acceptable certification authorities. Each certification authority is represented by the subject fields of the corresponding CA certificate. If acceptable CAs list is not empty, the client is restricted to use only certificates whose issuer fields are equal to those specified in acceptable CA list.

See also:     AcceptableCACount    

Discuss this help topic in SecureBlackbox Forum