[openssl.org #1163] add a list-client-ciphers option to s_server

2005-07-17 Thread via RT
it appears to go away if I put ssltap inbetween as per https://bugzilla.mozilla.org/show_bug.cgi?id=301006, so after all, the problem might be one of test setup with firefox (now I am on cygwin OpenSSL 0.9.8 05 Jul 2005) __

Bug in BN_sub_word?

2005-07-17 Thread mike-list
I think I've found a bug in BN_sub_word. It appears that it is not correctly setting the sign of the resulting BIGNUM. The following program attempts to create a BIGNUM with a value of -70, but it instead ends up with value 70. $ ./BNTest Zero: 0 -70: 70 Mike #include openssl/bn.h #include

Re: Bug in BN_sub_word?

2005-07-17 Thread mike-list
Sorry I forgot to mention that this is with version 0.9.8 on Windows XP (mingw). Mike I wrote: I think I've found a bug in BN_sub_word. It appears that it is not correctly setting the sign of the resulting BIGNUM. The following program attempts to create a BIGNUM with a value of -70, but it

Re: Bug in BN_sub_word?

2005-07-17 Thread Nils Larsch
[EMAIL PROTECTED] wrote: I think I've found a bug in BN_sub_word. It appears that it is not correctly setting the sign of the resulting BIGNUM. The following program attempts to create a BIGNUM with a value of -70, but it instead ends up with value 70. $ ./BNTest Zero: 0 -70: 70 Mike

[openssl.org #1164] BUG: namespace pollution in openssl 0.9.8

2005-07-17 Thread Matthias Kurz via RT
Hi. In openssl/ossl_typ.h many indentifiers _force_ conflicts. Not a good habit for a library. In my case i cannot build bacula, because there is a conflict with STORE. And now ? (mk) -- Matthias Kurz; Fuldastr. 3; D-28199 Bremen; VOICE +49 421 53 600 47 Im prämotorischen Cortex kann

[openssl.org #1165] Bug Report

2005-07-17 Thread Stefan Person via RT
Any Ideas? (Win XP Pro) Forward: I had a 1051 ordinance error unable to find libeay32.dll when trying to generate a key with WinSSLWrap. This was using OpenSSL 0.9.8. I reverted back to OpenSSL v0.9.7g and it generated a key fine.. Just a heads up..Although It seems like a purely generated

v0.9.8 testsuite (ecdsatest.c): Typo?

2005-07-17 Thread rz1a
Hello! Is it a typo I see on the line 451 of ./test/ecdsatest.c: if (signature); OPENSSL_free(signature); My compiler (Watcom C v10.6B on QNX4) barks at me for the Meaningless use of expression... Tony. __ OpenSSL

v0.9.8 cosmetic fixes for portability (QNX4 and Watcom C v10.6B)

2005-07-17 Thread rz1a
Hello openssl-dev, Unless I do the following I get the Meaningless use of exression from the compiler: diff -ru openssl-0.9.8/crypto/bn/bn_recp.c openssl-0.9.8-QNX/crypto/bn/bn_recp.c --- openssl-0.9.8/crypto/bn/bn_recp.c 2005-04-26 22:53:13.0 +0400 +++

Re: v0.9.8 testsuite (ecdsatest.c): Typo?

2005-07-17 Thread Nils Larsch
[EMAIL PROTECTED] wrote: Hello! Is it a typo I see on the line 451 of ./test/ecdsatest.c: yep that's a typo. I've committed a fix. Thanks, Nils __ OpenSSL Project http://www.openssl.org

Please help. X509 v3 java ca cert extensions?

2005-07-17 Thread David Templar
Hi, How do I create a x509 v3 ca cert that has the standard ANY permission? The openssl.cnf will create a cert that works with a computer but not a phone. I need to create a ca cert that will validate a java midlet for a phone. I have sorted out many of the issues with installing the cert

Authentication error

2005-07-17 Thread David Templar
Why will a ca generated in openssl result in an authentication error if this root cert is installed on a phone? I am using the root cert to validate a java signed midlet for a phone... The phone does not use any other certs to validate my cert and it does not access the web to validate a

Re: v0.9.8 cosmetic fixes for portability (QNX4 and Watcom C v10.6B)

2005-07-17 Thread dean gaudet
On Mon, 18 Jul 2005, [EMAIL PROTECTED] wrote: Unless I do the following I get the Meaningless use of exression from the compiler: diff -ru openssl-0.9.8/crypto/bn/bn_recp.c openssl-0.9.8-QNX/crypto/bn/bn_recp.c --- openssl-0.9.8/crypto/bn/bn_recp.c 2005-04-26 22:53:13.0 +0400

Re: v0.9.8 cosmetic fixes for portability (QNX4 and Watcom C v10.6B)

2005-07-17 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Sun, 17 Jul 2005 20:01:24 -0700 (PDT), dean gaudet [EMAIL PROTECTED] said: dean On Mon, 18 Jul 2005, [EMAIL PROTECTED] wrote: dean dean Unless I do the following I get the Meaningless use of exression dean from the compiler: dean dean diff -ru

Re: v0.9.8 cosmetic fixes for portability (QNX4 and Watcom C v10.6B)

2005-07-17 Thread dean gaudet
On Mon, 18 Jul 2005, Richard Levitte - VMS Whacker wrote: Incorrect. The compiler will see 'if(dv) ; if(rem) ; return(ret)'. That's perfectly OK. oops :) -dean __ OpenSSL Project