TLSKeyExchangeAlgorithmInfo Constant

Represents constant TLSKeyExchangeAlgorithmInfo.

Namespace: flcTLSUtils
 TLSKeyExchangeAlgorithmInfo: array[TTLSKeyExchangeAlgorithm] of TTLSKeyExchangeAlgorithmInfo = (
 ( 
 Name : '';
 Method : tlskemNone;
 KeyType : tlskecktNone;
 Supported : False;
 ),
 ( 
 Name : 'NULL';
 Method : tlskemNULL;
 KeyType : tlskecktNone;
 Supported : True;
 ),
 ( 
 Name : 'DHE_DSS';
 Method : tlskemDHE;
 KeyType : tlskecktDSS;
 Supported : False;
 ),
 ( 
 Name : 'DHE_RSA';
 Method : tlskemDHE;
 KeyType : tlskecktRSA;
 Supported : False;
 ),
 ( 
 Name : 'DH_Anon';
 Method : tlskemDH_Anon;
 KeyType : tlskecktNone;
 Supported : False;
 ),
 ( 
 Name : 'RSA';
 Method : tlskemRSA;
 KeyType : tlskecktRSA;
 Supported : True;
 ),
 ( 
 Name : 'DH_DSS';
 Method : tlskemDH;
 KeyType : tlskecktDSS;
 Supported : False;
 ),
 ( 
 Name : 'DH_RSA';
 Method : tlskemDH;
 KeyType : tlskecktRSA;
 Supported : False;
 )
 );