List Symetric Chipers

2002-08-26 Thread Adrian Stanila
Hi, I'm interested to list all symetric chipers what MY openssl know ! It is possible ? Best Regards Adrian Stanila __ OpenSSL Project http://www.openssl.org Development Mailing

[openssl.org #248] bad serial number length

2002-08-26 Thread Olaf Zaplinski via RT
OpenSSL self-test report: OpenSSL version: 0.9.6g Last change: [In 0.9.6g-engine release:]... Options: no-idea --prefix=/usr/local --openssldir=/usr/local/ssl no-threads shared OS (uname): Linux binky 2.4.19 #1 Fri Aug 9 10:17:44 CEST 2002 i586 unknown OS (config):

[openssl.org #249] 'openssl verify' broken

2002-08-26 Thread Olaf Zaplinski via RT
OpenSSL self-test report: OpenSSL version: 0.9.6g Last change: [In 0.9.6g-engine release:]... Options: no-idea --prefix=/usr/local --openssldir=/usr/local/ssl no-threads shared OS (uname): Linux binky 2.4.19 #1 Fri Aug 9 10:17:44 CEST 2002 i586 unknown OS (config):

[openssl.org #250] 'openssl ca' broken

2002-08-26 Thread Olaf Zaplinski via RT
OpenSSL self-test report: OpenSSL version: 0.9.6g Last change: [In 0.9.6g-engine release:]... Options: no-idea --prefix=/usr/local --openssldir=/usr/local/ssl no-threads shared OS (uname): Linux binky 2.4.19 #1 Fri Aug 9 10:17:44 CEST 2002 i586 unknown OS (config):

Re: List Symetric Chipers

2002-08-26 Thread Lutz Jaenicke
On Mon, Aug 26, 2002 at 11:45:22AM -0400, Adrian Stanila wrote: I'm interested to list all symetric chipers what MY openssl know ! It is possible ? man ciphers. Best regards, Lutz -- Lutz Jaenicke [EMAIL PROTECTED]

Re: List Symetric Chipers

2002-08-26 Thread Adrian Stanila
On Mon, 26 Aug 2002, Lutz Jaenicke wrote: On Mon, Aug 26, 2002 at 11:45:22AM -0400, Adrian Stanila wrote: I'm interested to list all symetric chipers what MY openssl know ! It is possible ? man ciphers. :))) I'm versy sorry for misunderstanding . I want a C code ! it's posible

Re: List Symetric Chipers

2002-08-26 Thread Adrian Stanila
OK ! In this way you can get the chipers ! But how I can get the digest methods ? SSL_METHOD *sslmeth; SSL_CIPHER *sslc; int i; meth=SSLv23_method(); for(i = 0;;i++) { sslc = (sslmeth-get_cipher)(i); if (!sslc) break; printf(cipher_%s, sslc-name); }

Re: X509_sign: crashing when I use the signing key from multiple threads

2002-08-26 Thread Lutz Jaenicke
On Fri, Aug 23, 2002 at 04:36:03PM -0700, Himanshu Soni wrote: Each thread uses this global key for signing. I use X509_sign(..) function for generating the signature. When my app spawns multiple threads, every once a while, I get a seg fault with no core dumped. I am running openssld.

[openssl.org #251] PKCS12 memory leak?

2002-08-26 Thread Shaheed Bacchus via RT
hi all, i have a routine that reads a private key and cert from a bio containing a PKCS12 file, the relevant part of the code is: PK12 = d2i_PKCS12_bio(DataBio, NULL); PKCS12_parse(PK12, Phrase, Pkey, Cert, Ca); PKCS12_free(PK12); at the end of the routine i free all of the structures used

Re: [openssl.org #233] build fails on Mac OS X Server 1.x (Rhapsody)

2002-08-26 Thread Milo Velimirovic
0.9.6.g SOLUTION: Find the BSD source for ftime(). Copy it to openSSL/crypto add ftime.c and ftime.o to the lines in openssl/crypto/Makefile that define LIBSRC and LIBOBJ respectively: LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c ftime.c LIBOBJ=

Re: [openssl.org #233] build fails on Mac OS X Server 1.x (Rhapsody)

2002-08-26 Thread Milo Velimirovic via RT
0.9.6.g SOLUTION: Find the BSD source for ftime(). Copy it to openSSL/crypto add ftime.c and ftime.o to the lines in openssl/crypto/Makefile that define LIBSRC and LIBOBJ respectively: LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c ftime.c LIBOBJ=

RE: [openssl.org #247] Openssl fix

2002-08-26 Thread via RT
I'm not sure I understand your question. The openssl version is: version 0.9.6d Jeff Turner Network Manager North Florida Community College (850) 973-9495 [EMAIL PROTECTED] -Original Message- From: Lutz Jaenicke via RT [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 24, 2002 4:12

Re: [openssl.org #251] PKCS12 memory leak?

2002-08-26 Thread Dr. Stephen Henson
On Mon, Aug 26, 2002, Shaheed Bacchus via RT wrote: hi all, i have a routine that reads a private key and cert from a bio containing a PKCS12 file, the relevant part of the code is: PK12 = d2i_PKCS12_bio(DataBio, NULL); PKCS12_parse(PK12, Phrase, Pkey, Cert, Ca); PKCS12_free(PK12);

Re: [openssl.org #248] bad serial number length

2002-08-26 Thread Dr. Stephen Henson
On Mon, Aug 26, 2002, Olaf Zaplinski via RT wrote: OpenSSL self-test report: OpenSSL version: 0.9.6g Last change: [In 0.9.6g-engine release:]... Options: no-idea --prefix=/usr/local --openssldir=/usr/local/ssl no-threads shared OS (uname): Linux binky 2.4.19 #1

Re: [openssl.org #249] 'openssl verify' broken

2002-08-26 Thread Dr. Stephen Henson
On Mon, Aug 26, 2002, Olaf Zaplinski via RT wrote: OpenSSL self-test report: OpenSSL version: 0.9.6g Last change: [In 0.9.6g-engine release:]... Options: no-idea --prefix=/usr/local --openssldir=/usr/local/ssl no-threads shared OS (uname): Linux binky 2.4.19 #1 Fri

RE: X509_sign: crashing when I use the signing key from multiple threads

2002-08-26 Thread Himanshu Soni
Hi Attached is the back-trace for the dump. Is disabling efence the solution here? Thanx Himanshu Soni freaky:~/cvs/server/daemons/src/openssld$ gdb Linux-debug-openssld core GNU gdb 5.0 Copyright 2000 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public

[openssl.org #252]

2002-08-26 Thread via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

AdNovum PKCS#11 Patch

2002-08-26 Thread glen . hart
I would like to experiment with the AdNovum PKCS#11 mods for OpenSSL (looks like the most useable solution at the moment for both crypto accelerators and smartcards). The OpenSSL site contribution area only has the pkcs11-adnovum-20011212.tar.gz file available which doesn't appear to contain