>I try to run the basic s_client/s_server application with elementary communication (no certificats client and server),
>but when I give the same ciphers suite for client/server for SSLv3 (like RC4-MD5), I have got the msg : no_shared_ciphers: I don't understand :~(
>And does these programs generate the public key??? because in argument its ask the private key only????
>these are my comnands lines:
>openssl s_server -accept 4433 -context cnt -key privkeycl.pem -nocert
-no_tmp_rsa -ssl3 -cipher RC4-MD5
>and:
>openssl s_client -connect <mycomputername>:4433 -key privkeysvr.pem
-ssl3 -cipher RC4-MD5
>In fact, I would study this example in order to understand what
is the mininum structure to add to an existing programs to secure the communication
>can you help me!!!-)
see faq.
You got call SSLeay_add_all_algorithms(); first. If
you are using 0.9.5
or later you should another function just like this one. You can
find the
exact explanation in FAQ.
thank you for these details, but I would want to run the s_server and
s_client without modify the code source for the moment.
In brief, I want a simple example of secure communication apps and
if anyone have goods parameters of these programs.....
I work under Linux using 0.9.5a
Eric Brunet
a Tux's friend and SSL beginner ;)