crash observed in csefind() while using openssl with OCF

2009-08-05 Thread Lakshmi Prasanna
appreciated. thanks, Lakshmi Prasanna __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord

renegotiation not working using function BIO_set_ssl_renegotiate_timeout()

2009-07-14 Thread Lakshmi Prasanna
efault: goto shutdown; } } shutdown: if(SSL_get_shutdown(ssl) && SSL_RECEIVED_SHUTDOWN) SSL_shutdown(ssl); else SSL_clear(ssl); close(connfd); // BIO_free(bio); printf("total bytes read = %d\n", total_bytes); printf("Closing connection\n"); SSL_free(ssl); } return

renegotiation not working using BIO_set_ssl_renegotiate_timeout() function

2009-07-14 Thread lakshmi prasanna
TE: break; default: goto shutdown; } } shutdown: if(SSL_get_shutdown(ssl) && SSL_RECEIVED_SHUTDOWN) SSL_shutdown(ssl); else SSL_clear(ssl); close(connfd); // BIO_free(bio); printf("total bytes read = %d\n", total_bytes); printf("Closing connection\n"); SSL_free(ssl); } return 0; } thanks & regards, Lakshmi Prasanna s_test.c Description: Binary data

Re: SSL Issue

2008-07-08 Thread lakshmi prasanna
shake is terminated and the Client is not sending it's certificate. --Lakshmi Prasanna On Mon, Jul 7, 2008 at 7:31 PM, Archana Porwal <[EMAIL PROTECTED]> wrote: > Hello, > > > I have one issue in ssl programming : > > when I am trying to send client certificate to serve

Unable to send a response packet to client browser

2008-06-19 Thread lakshmi prasanna
printf("Error accepting ssl connection\n"); close (listenSock); SSL_CTX_free(ctx); exit (0); } if (processClient(ssl_client_c

Re: Difference in packet contents

2008-06-17 Thread lakshmi prasanna
other end. After decrypting the received message, it finds the expected Finished message, and verifies the data sent in the Finished message. -- Lakshmi Prasanna On Tue, Jun 17, 2008 at 6:51 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote: > Hi, > > I do know for a fact that part of the

Re: Difference in packet contents

2008-06-17 Thread lakshmi prasanna
negotiation. I think that's the reason why, after the Record protocol Header data (5 bytes) nothing makes sense as it is encrypted. --Lakshmi Prasanna On Tue, Jun 17, 2008 at 5:41 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote: > Yup, that solves it. > > Another matter that's

Re: Difference in packet contents

2008-06-17 Thread lakshmi prasanna
Hi, Actually, AES is by default implemented in CBC (Cipher Block Chaining )mode in TLSv1. Refer RFC 3268. Since the encryption is done in CBC mode, you will not get the same encrypted text for identical plain text. --lakshmi prasanna On Tue, Jun 17, 2008 at 10:58 AM, jimmy bahuleyan <[EM

Fwd: Difference in packet contents

2008-06-16 Thread lakshmi prasanna
-- Forwarded message -- From: lakshmi prasanna <[EMAIL PROTECTED]> Date: Mon, Jun 16, 2008 at 6:06 PM Subject: Re: Difference in packet contents To: Vijay Kotari <[EMAIL PROTECTED]> Hi, You can find information on this page " http://developer.mo

Re: Difference in packet contents

2008-06-16 Thread lakshmi prasanna
icates the Encryption algorithm and the MAC algorithm to be used. RSA will not be used for encryption since it is very slow in encrypting large amount of data... -- Lakshmi Prasanna On Mon, Jun 16, 2008 at 3:24 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote: > Hi, > > No, I don't think

Re: Difference in packet contents

2008-06-16 Thread lakshmi prasanna
Cipher). That is the reason why you are observing different packet dumps for same application data. thanks, Lakshmi Prasanna On Mon, Jun 16, 2008 at 2:35 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote: > Hi, > > While observing some packet dump, I noticed that while sending the same >

Re: problem with certificates

2008-06-13 Thread lakshmi prasanna
to create a CA and generate CA signed certificates? thanks, Lakshmi Prasanna On Fri, Jun 13, 2008 at 2:33 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >Hi, > > The below error is obtained when no CA is setup in the machine, ie., > cacert.pem and cakey.pem file are not pr

problem with certificates

2008-06-11 Thread lakshmi prasanna
Intoto/[EMAIL PROTECTED] err 19:self signed certificate in certificate chain SSL_connect failed ** client.c:80 Error connecting SSL object 16384:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed:s3_clnt.c:843: Any help regarding this... -- thanks, Lakshmi Prasanna

problem with certificates

2008-06-11 Thread lakshmi prasanna
low error ** server.c:59 Error accepting SSL connection 16386:error:14094418:SSL routines:SSL3_READ_BYTES:tlsv1 alert unknown ca:s3_pkt.c:1052:SSL alert number 48 Why is the certification verification failing. Any help is appreciated.. -- thanks, Lakshmi Prasanna