TLSCipherSuiteHashInfo Constant

Represents constant TLSCipherSuiteHashInfo.

Namespace: flcTLSCipherSuite
 TLSCipherSuiteHashInfo : array[TTLSCipherSuiteHash] of TTLSCipherSuiteHashInfo = (
 ( 
 Name : '';
 HashSize : 0;
 KeyLength : 0;
 MACAlgorithm : tlsmaNone;
 Supported : False;
 ),
 ( 
 Name : 'NULL';
 HashSize : 0;
 KeyLength : 0;
 MACAlgorithm : tlsmaNULL;
 Supported : True;
 ),
 ( 
 Name : 'SHA';
 HashSize : 160;
 KeyLength : 160;
 MACAlgorithm : tlsmaHMAC_SHA1;
 Supported : True;
 ),
 ( 
 Name : 'SHA256';
 HashSize : 256;
 KeyLength : 256;
 MACAlgorithm : tlsmaHMAC_SHA256;
 Supported : True;
 ),
 ( 
 Name : 'MD5';
 HashSize : 128;
 KeyLength : 128;
 MACAlgorithm : tlsmaHMAC_MD5;
 Supported : True;
 )
 );