(How) Is it possible to tell openssl's s_client
tool to use keying option 2 for 3DES (meaning use two different keys only, resulting in a key size of 112 bits; see Wikipedia)?
Currently the closest I got is
openssl s_client -connect example.com:443 -tls1 -cipher DES-CBC3-SHA \
-debug -msg -state -status -CApath /.../cacerts/ </dev/null
But with that command keying option 1 (tree different keys, 168 bit key length) is used.
Tools like http://ssllabs.com seem to be able to "simulate" for example IE8 on Win XP which seems to use 3DES with keying option 2...