TCP socket persistence and SSL Connect

2007-01-19 Thread Prabhu.S
Hi All: I have a SSL client and a server application.The client connects to a SSL server in a TCP socket persistence mode, i.e, it does a data exchange with the server through a SSL connection , tears down the SSL connection but again sends out a client_hello in the same TCP socket connection

RE: TCP socket persistence and SSL Connect

2007-01-19 Thread Usman Riaz
One way to distinguish between the two is to use openSSL's BIO_pairs. The idea is to separate the SSL data en/decryption and the transport, so whatever goes down (the transport or the ssl) you can easily diffrentiate, and using BIO_pairs will let you use OpenSSL for the SSL part and then you

PMI patch for OpenSSH

2007-01-19 Thread Vincenzo Sciarra
I have just published a pre-alfa of a patch that has the goal to make OpenSSH aware with PMI. Reference site : http://nutmay.sourceforge.net -- Vincenzo Sciarra

How to generate a s_server certificate?

2007-01-19 Thread lemons_terry
Hi I'm an SSL newbie, and am planning to curl up with a book or website and do some learning. But, for now, I want to make sure that my Wireshark/Ethereal gear can correctly detect and decode packets containing SSL traffic. So I want to use the OpenSSL s_client and s_server applications. But,

Re: How to generate a s_server certificate?

2007-01-19 Thread Julius Davies
Try this document: http://httpd.apache.org/docs/2.2/ssl/ssl_faq.html#selfcert On 1/19/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi I'm an SSL newbie, and am planning to curl up with a book or website and do some learning. But, for now, I want to make sure that my Wireshark/Ethereal

RE: How to generate a s_server certificate?

2007-01-19 Thread lemons_terry
Great suggestion. Thanks, Julius! tl From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Julius Davies Sent: Friday, January 19, 2007 2:10 PM To: openssl-users@openssl.org Subject: Re: How to generate a s_server certificate? Try this document:

RE: compile problems on osx/intel

2007-01-19 Thread Ken Bowler
I'm having the same problem. Is there a resolution for this? -Original Message- From: Vidar Gundersen [mailto:[EMAIL PROTECTED] Sent: January 5, 2007 8:01 AM To: openssl-users@openssl.org Subject: compile problems on osx/intel i'm getting Undefined symbols error while compiling openssl

Verifying hex sha1 signature

2007-01-19 Thread Keith Thompson
Using the openssl command-line tool, how can I verify a hexadecimal sha1 signature (i.e., the output of openssl sha1 -sign -hex ...)? I can verify a binary signature, but for my application I need to use plain text. I could use openssl base64 to encode and decode the binary signature, but I'd