Re: Session ID Caching?

1999-05-21 Thread Roland Mechler
Bodo Moeller wrote: > Vincent Padua <[EMAIL PROTECTED]>: > > > Fair enough. Okay, let's assume I'm sitting in front of a BSD unix box > > with openssl 0.9.2B installed. At the standard TCSH command line, is there > > a way for me to do something to the effect /usr/local/ssl/bin/openssl > > -ses

simple help

1999-05-21 Thread Gang Lu
Hi,   I am trying openssl-0.9.2b. Could anyone point me to where I can find a simple client and server example that works? I try those coming with openssl-0.9.2b under /demos/ssl, but that didn't work.   Thanks in advance,   Gang

Re: Session ID Caching?

1999-05-21 Thread Bodo Moeller
Vincent Padua <[EMAIL PROTECTED]>: > Fair enough. Okay, let's assume I'm sitting in front of a BSD unix box > with openssl 0.9.2B installed. At the standard TCSH command line, is there > a way for me to do something to the effect /usr/local/ssl/bin/openssl > -sess_id_cache disable? No, and

Re: R: A few trivial questions...

1999-05-21 Thread William M. Perry
Andrea e Luca Giacobazzi wrote: > >I need the full subject DN of the certificate, and the DER encoded X509 > >certificate itself (and its length). ie: what you would find in the > >userCertificate field in an LDAP directory. > > Use i2d_X509(..) to convert from X509* to DER : > > /* Convert cert

R: A few trivial questions...

1999-05-21 Thread Andrea e Luca Giacobazzi
>I need the full subject DN of the certificate, and the DER encoded X509 >certificate itself (and its length). ie: what you would find in the >userCertificate field in an LDAP directory. Use i2d_X509(..) to convert from X509* to DER : /* Convert certificate from X509* to DER, put it in a str

R: A few trivial questions...

1999-05-21 Thread Andrea e Luca Giacobazzi
I forgot: int len; unsigned char *buf, *cert; Andrea __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager

RE: Session ID Caching?

1999-05-21 Thread Vincent Padua
Fair enough. Okay, let's assume I'm sitting in front of a BSD unix box with openssl 0.9.2B installed. At the standard TCSH command line, is there a way for me to do something to the effect /usr/local/ssl/bin/openssl -sess_id_cache disable? Remember, I'd like to turn session id caching off.

A few trivial questions...

1999-05-21 Thread William M. Perry
I've been digging around all morning in the header files and source for openssl and could not find an easy way to get what I need out of an 'X509 *' object. I need the full subject DN of the certificate, and the DER encoded X509 certificate itself (and its length). ie: what you would find in the

Re: "options required on this system are not known"

1999-05-21 Thread Ulf Möller
> There should be compiler options (probably -D_REENTRANT) that allow to > build the library in a way so that it _can_ be linked with a > thread-safe library, but will still work with the usual library. > We're not interested in how to link it, just how to pursuade the > system header files to use

RE: Session ID Caching?

1999-05-21 Thread Erwann ABALEA
On Fri, 21 May 1999, Vincent Padua wrote: > *grin* Is there a way to turn off session ID caching from the command line? > Well. Maybe you should try to post better questions Which command line do you use? Which tool? Which program? The answer given by Ben is valid if you are develop

Re: Session ID Caching?

1999-05-21 Thread Ben Laurie
Vincent Padua wrote: > > *grin* Is there a way to turn off session ID caching from the command line? Either: a) Yes or b) No depending on which command line you are referring to. Cheers, Ben. -- http://www.apache-ssl.org/ben.html "My grandfather once told me that there are two kinds of

RE: Session ID Caching?

1999-05-21 Thread Vincent Padua
*grin* Is there a way to turn off session ID caching from the command line? Regards, Vince -Original Message- From: Ben Laurie [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 20, 1999 8:43 PM To: [EMAIL PROTECTED] Subject:Re: Session ID Caching? Vincent Padua wrote: > >

Re: "options required on this system are not known"

1999-05-21 Thread Bodo Moeller
On Fri, May 21, 1999 at 03:31:03AM +0200, Ulf Möller wrote: > On FreeBSD the Configure script prints a warning that "The library > could not be configured for supporting multi-threaded applications as > the compiler options required on this system are not known." > > I don't know if the approach

Compiler bug workaround for SINIX cc

1999-05-21 Thread Martin Kraemer
Here's another nit which has to do with a compiler bug which is widespread among the compilers derived from SGI's cc. It's an optimizer bug which occurs when redundant constants are used in arithmetic expressions (c = a & 0x;) The compiler switch IRIX_CC_BUG tries to circumvent these. The