Re: obtaining list of ciphers, digests and algorithms?

2006-07-30 Thread Bear Giles
Dr. Stephen Henson wrote: On Sun, Jul 30, 2006, Girish Venkatachalam wrote: --- Bear Giles <[EMAIL PROTECTED]> wrote: Is there a way to programmatically obtain a list of available ciphers, digests and algorithms? I looked at the header files, but may have overlooked something.

Re: obtaining list of ciphers, digests and algorithms?

2006-07-30 Thread Dr. Stephen Henson
On Sun, Jul 30, 2006, Girish Venkatachalam wrote: > > > --- Bear Giles <[EMAIL PROTECTED]> wrote: > > > Is there a way to programmatically obtain a list of > > available ciphers, > > digests and algorithms? I looked at the header > > files, but may have > > overlooked something. > > > man c

Re: obtaining list of ciphers, digests and algorithms?

2006-07-30 Thread Girish Venkatachalam
--- Bear Giles <[EMAIL PROTECTED]> wrote: > Is there a way to programmatically obtain a list of > available ciphers, > digests and algorithms? I looked at the header > files, but may have > overlooked something. > man ciphers > Bear > _

Re: [openssl.org #1187] Openssl - unable to load from /usr/local/ssl/openssl.cnf on win nt

2006-07-30 Thread [EMAIL PROTECTED] via RT
1st step : c:\openssl\bin>openssl genrsa -out myprvkey.pem 1024 2nd step : i think this solves the problem to create the pulic certificate using openssl. jus type this c:\openssl\bin>openssl req -config c:\openssl\bin\openssl.cnf -new -key myprvkey.pem -x509 -days 365 -out mypubcert.pem -- Th

obtaining list of ciphers, digests and algorithms?

2006-07-30 Thread Bear Giles
Is there a way to programmatically obtain a list of available ciphers, digests and algorithms? I looked at the header files, but may have overlooked something. Bear __ OpenSSL Project http://www

Re: [PATCH] fix I/O buffer size handling for "enc" application (repost)

2006-07-30 Thread Jean-Marc Desperrier
Klaus Weidner wrote: [...] - please let me know if you have issues with the bugfix, [...] The following patch uses the ANSI C setvbuf(3) function [...] + { + if (bufsize != NULL) + setvbuf(stdin, (char *)NULL, _IONBF, 0); BIO_set