[openssl.org #873] [Fwd: Bug#243489: openssl: ca segfaults]

2004-04-21 Thread Christoph Martin via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

[openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Christoph Martin via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

RE: [openssl.org #873] [Fwd: Bug#243489: openssl: ca segfaults]

2004-04-21 Thread Steven Reddie
This issue has been fixed and committed. The check for NULL that you propose was added to the free_index function itself so that all callers of free_index benefit from the protection. Regards, Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

[openssl.org #873] [Fwd: Bug#243489: openssl: ca segfaults]

2004-04-21 Thread Richard Levitte via RT
[EMAIL PROTECTED] - Wed Apr 21 08:27:23 2004]: This bug is already fixed by having free_index() check for NULL. Thank you. I'm resolving this ticket. -- Richard Levitte [EMAIL PROTECTED] __ OpenSSL Project

[openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Richard Levitte via RT
[EMAIL PROTECTED] - Wed Apr 21 08:27:34 2004]: Interesting bug. I guess that noone ever thought of testing for ridiculously small moduli... A quick solution would be to have the following at the beginning of BN_generate_prime_ex(): /* We know from experience that this algorithms

bug in stack.c

2004-04-21 Thread francesco.petruzzi
I've found that in stack.c there is no check about index value. Results a crash if index=MIN_NODES index=st-num or unpredictable result if indexMIN_NODES index=st-num char *sk_value(const STACK *st, int i){if(st == NULL) return NULL;return st-data[i];} char *sk_set(STACK *st, int i,

openssl req SSL/SSH key merge

2004-04-21 Thread C S
Are there any downstream problems using a cert based off of a ssh-keygen as opposed to an openssl genrsa? For example: ssh-keygen -trsa -b1024 -ftestid_rsa -N openssl req -new -key testid_rsa -out testid_rsa.csr The above is what I'm currently using based off OpenSSH's supported

Re: [openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Geoff Thorpe
On April 21, 2004 04:49 am, Richard Levitte via RT wrote: I'm a little hesitant to do this, however, as it has a strong smell of quick and dirty hack (which is about the same smell as I imagine a pair of socks you have worn for a week would while wearing sneackers 80% of the time...).

Re: bug in stack.c

2004-04-21 Thread Geoff Thorpe
On April 21, 2004 08:26 am, Richard Koenning wrote: [EMAIL PROTECTED] wrote: I've found that in stack.c there is no check about index value. Results a crash if index=MIN_NODES index=st-num or unpredictable result if indexMIN_NODES index=st-num See the message with the subject Re:

Re: [openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Wed, 21 Apr 2004 10:37:45 -0400, Geoff Thorpe [EMAIL PROTECTED] said: geoff On April 21, 2004 04:49 am, Richard Levitte via RT wrote: geoff I'm a little hesitant to do this, however, as it has a strong geoff smell of quick and dirty hack (which is about the same

Re: [openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Dr. Stephen Henson
On Wed, Apr 21, 2004, Richard Levitte - VMS Whacker wrote: In message [EMAIL PROTECTED] on Wed, 21 Apr 2004 10:37:45 -0400, Geoff Thorpe [EMAIL PROTECTED] said: geoff We should find where/why things spin out of control and improve geoff the handling to either work or bail out gracefully. I

Re: [openssl.org #874] [Fwd: Bug#243509: openssl: genrsa get crasy with small key size]

2004-04-21 Thread Geoff Thorpe
On April 21, 2004 04:49 am, Richard Levitte via RT wrote: [EMAIL PROTECTED] - Wed Apr 21 08:27:34 2004]: Interesting bug. I guess that noone ever thought of testing for ridiculously small moduli... A quick solution would be to have the following at the beginning of BN_generate_prime_ex():