Re: PEM stored in memory, not in file

2001-08-27 Thread James A. Russo
Arno, You could use a memory bio. I had to do something like this when I stored my keys PEM encoded into a gdbm database. ie: BIO *in; char *certificate = "BEGIN CERT" in = BIO_new(BIO_s_mem()); if (BIO_write(certificate,strlen(certificate))<0) { BIO_free(in);

how to verify certificate against private key.

2001-08-24 Thread James A. Russo
rence. thanks, -James -- James A. Russo Systems Engineer Verio, Inc. [EMAIL PROTECTED] __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] Auto

Re: non-blocking SSL_Accept.

2001-08-23 Thread James A. Russo
01 at 06:52:33PM -0400, James A. Russo wrote: > I am > working on an event driven (non-blocking) SSL proxy, but am > > experiencing a problem with SSL_accept on some connections. > > The > connection is accepted, and SSL_accept is called. It normally takes a > > few calls