I'm running openssl v 0.9.8j on sles 11 and i'm having a problem with certificate validation while using SSLv2
If I'm forcing openssl to use SSLv3 with -ssl3, openssl is able to validate the certificate. But if I swith to -ssl2 i get the following error :
verify error:num=20:unable to get local issuer certificat
I'm kinda new to ssl mechanic, is it possible that my local certificat (.pem) is only valid for SSLv3 and not SSLv2 ?
SSLv2
is broken and it should not be used. There's no reason to useSSLv3
in 2014. You should be using TLSv1 and above. Out of morbid curiosity, why do you want to support those protocol versions? - jww