JimBodkins
November 24th, 2007, 10:46 PM
I have been using CentOS 4.5 and was looking at Ubuntu as a new platform.
I just compiled and ran one ap - a hotel reservation module - and received - SSL CTX contains no ciphers.
I guess this means ubuntu cant be used commercially. Very disappointing.
P.S.
ERR_print_errors_fp (logfd); generates
18452:error:140A90A1:SSL routines:SSL_CTX_new:library has no ciphers:ssl_lib.c:1
424:
This is in a function that does ..
{
SSL_METHOD *method;
SSL_CTX *ctx;
OpenSSL_add_all_algorithms (); /* Load cryptos, et.al. */
SSL_load_error_strings (); /* Bring in and register error messages */
method = SSLv3_client_method (); /* Create new client-method instance */
ctx = SSL_CTX_new (method); /* Create new context */
if (ctx == NULL)
{
ERR_print_errors_fR_print_errors_fp (logfd);
abort ();
}
return ctx;
I just compiled and ran one ap - a hotel reservation module - and received - SSL CTX contains no ciphers.
I guess this means ubuntu cant be used commercially. Very disappointing.
P.S.
ERR_print_errors_fp (logfd); generates
18452:error:140A90A1:SSL routines:SSL_CTX_new:library has no ciphers:ssl_lib.c:1
424:
This is in a function that does ..
{
SSL_METHOD *method;
SSL_CTX *ctx;
OpenSSL_add_all_algorithms (); /* Load cryptos, et.al. */
SSL_load_error_strings (); /* Bring in and register error messages */
method = SSLv3_client_method (); /* Create new client-method instance */
ctx = SSL_CTX_new (method); /* Create new context */
if (ctx == NULL)
{
ERR_print_errors_fR_print_errors_fp (logfd);
abort ();
}
return ctx;