|
Hi Frank,
first of all I would like to thank you for your interest
: I really appreciate it !
I used in my code the function
SSLeay_add_ssl_algorithms(); here is it :
.
.
.
int main()
{ SSL_CTX *ctx; SSL *ssl; SSL_METHOD *meth; int listen_sd, sd, err; struct sockaddr_in sa_server; struct sockaddr_in sa_client; unsigned long error_code; /* SSL preliminaries : we keep the certificate and key with the context */ void
SSL_load_error_strings();
SSLeay_add_ssl_algorithms(); meth = SSLv3_server_method(); ERR_print_errors_fp(stderr); ctx = SSL_CTX_new(meth); /*<-- problem*/ if (!ctx) { ERR_print_errors_fp(stderr); printf("\nctx \n"); exit(1); .
.
.
At this point it exits and says that there is an error,
occurred at line 1052 of ssl_lib.c : I checked that line in that file and in
that part of the program it loads the cipher list ! So I guess that the program
cannot find it, that' s why it fails !
I really don' t know hot to handle it !
If you can understand what is the problem I will be very
grateful, otherwise thanks anyway for your help.
Best regards,
Paolo.
|
- Cipher list problem. Montini Paolo
- RE: Cipher list problem. Frank Balluffi
- Montini Paolo
