networksecurity/tls/ts_tls/scripts/tls2.ini
changeset 0 af10295192d8
child 6 c64cefac6e99
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 //
       
     2 // T_AUTOSSL config file. This file should be placed in /epoc32/wins/c/system/data/t_autossl.ini
       
     3 //
       
     4 // The following fields must be present for each site that is to be tested.
       
     5 // The field names ARE case sensitive, and MUST be followed imediately by a `:`, and then a space 
       
     6 // before the field data.
       
     7 //
       
     8 // IPAddress		The address to connect to (can be www.site.com)
       
     9 // DNSName              The domain name which is checked against cert
       
    10 // IPPort		The port to connect to
       
    11 // TLSMaxVersion	Highest version of TLS to use, ie 2.0, 3.0, 3.1 (not currently used)
       
    12 // TLSMinVersion	Lowest version of TLS to use, ie 2.0, 3.0, 3.1 (not currently used)
       
    13 // Cipher		Cipher suite that server is expected to use (decimal), compared with 
       
    14 //			actual cipher for pass/fail. If this field is 0, no comparisons with 
       
    15 //			the actual cipher suite used will be made.
       
    16 // CipherSuites		Cipher suites that client will tell server it supports (decimal)
       
    17 //			Should be in decimal, with 2 characters, ie for suites 3,7,8,9-
       
    18 //			this field would be - 03070809
       
    19 //			By entering a single `0` for this field, the SSL default cipher suites
       
    20 //			will be passed.
       
    21 // Page			The page that should be retrieved from the web server.
       
    22 //			The leading `/` should be included, ie /webpage.html
       
    23 // SimpleGet		If a 1, the page request will be a simple "GET [Page]", if 0
       
    24 //			a HTTP get request will be constructed.
       
    25 //			For testing against OpenSSL servers, this field should be 0,
       
    26 //			while most "real" web servers prefer the simple request, the 
       
    27 //			LLoydsTSB login page being an example.
       
    28 //
       
    29 
       
    30 
       
    31 /////////////////////////////////////////////
       
    32 
       
    33 
       
    34 // test NULL ciphers
       
    35 [Tlstest]
       
    36 /////////////////////////////////////////////
       
    37 
       
    38 IPAddress=192.168.10.11
       
    39 Protocol=tls1.0
       
    40 P_rotocol=ssl3.0
       
    41 DNSName=TLS1
       
    42 IPPort=543
       
    43 TLSMaxVersion=3.1
       
    44 TLSMinVersion=3.0
       
    45 Cipher=2
       
    46 CipherSuites=02
       
    47 Page=/index.html
       
    48 SimpleGet=0
       
    49 TestEndDelay=0
       
    50 UseGenericSocket=false
       
    51 EAPKeyDerivation=false