Hello,
> 
>   Part of my source code is following:
>  
>  _ctx = SSL_CTX_new(SSLv23_client_method());
>  if(_ctx == NULL)
>  {  
>   result = SSL_ERROR_CREATE_NEW_CTX;
>   ERR_print_errors_fp(stderr);
>   czEmail_Report("SSL create new contex ERROR!", result); 
>   return result;  
>  }  
>  
>   _ctx is NULL, and it reports error on the stderr:
>   2458:error:140A90A1:SSL routines:SSL_CTX_new:library has no
> ciphers:ssl_lib.c:1424:
Try to add to initialization section:
 ENGINE_load_builtin_engines();

Best regards,
-- 
Marek Marcola <[EMAIL PROTECTED]>

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to