SSL_CTX_new: No such file or directory

2007-02-27 Thread Adayadil Thomas
Greetings. I am getting this error and am trying to find any info that could help me get past it. Relevant code snippet: if(!(d-ssl_ctx=SSL_CTX_new(SSLv23_server_method( { perror(SSL_CTX_new:); } Error I get: SSL_CTX_new:: No such file or directory Do you know why I

Re: Application Development Makefile examples

2007-02-21 Thread Adayadil Thomas
Use -lssl to link the library in. Use ldd on your final binary to double check. Regarding details of OpenSSL calls, use google, manpages or buy the book suggested in the prev reply. On 2/21/07, Brad House [EMAIL PROTECTED] wrote: I am new to Application development using OpenSSL. Currently I

openssl s_client: zlib

2007-02-19 Thread Adayadil Thomas
Greetings. Does openssl s_client code negotiate zlib compression with the server ? Thanks Thomas __ OpenSSL Project http://www.openssl.org Development Mailing List

RSA_private_decrypt speed ?

2007-01-31 Thread Adayadil Thomas
Greetings. I saw a post long time back that mentioned : According to Rescorla's book, the big CPU hit is in ssl3_get_client_key_exchange when it calls RSA_private_decrypt(). This takes 30 of the 32 milliseconds needed to process the connection on a 300 MHz Pentium (II). SNIP That was in the

Openssl and zlib

2006-10-24 Thread Adayadil Thomas
Greetings. Does openssl provide api's that the server and client should use to handle zlib compression ? Does the EVP api's handle/support zlib compression ? Help/Info is greatly appreciated. Thanks __ OpenSSL Project

SSL / zlib compression

2006-09-26 Thread Adayadil Thomas
Greetings. I have an SSL session in which the client and server has negotiated for cipherSuite SSL_RSA_WITH_RC4_128_MD5 compressionMethodzlib-compression Now, is the zlib-compression applied before encryption or after ? data - zlib-compression - encryption ==

SSLv3/TLSv1 and compression

2006-06-17 Thread Adayadil Thomas
Hello, What is the API or config setting that the client needs to invoke/perform in order to negotiate a compression method ? I am using curl as the client and when --tlsv1 or --sslv3 is specified it negotiates zlib compression with the server. I am trying to change curl not to negotiate the

disabling the negotiation of compression during tls/sslv3 negotiation ?

2006-06-16 Thread Adayadil Thomas
Hello, What is the API or config setting that the client needs to invoke/perform in order to negotiate a compression method ? I am using curl as the client and when --tlsv1 or --sslv3 is specified it negotiates zlib compression with the server. I am trying to change curl not to negotiate the

Compatibilty question (SSL methods)

2006-06-14 Thread Adayadil Thomas
Greetings to All, I have a question regarding compatibility between SSL methods. If the server uses SSLv23_client_method when creating the CTX, then will the server will be compatible with clients using 1. TLSv1_client_method 2. SSLv2_client_method 3. SSLv3_client_method 4. SSLv23_client_method