Re: 6 more beta3 successes (1 small issue though)

2000-09-22 Thread Kris Kennaway
On Fri, 22 Sep 2000, Richard Levitte - VMS Whacker wrote: From: Kris Kennaway [EMAIL PROTECTED] kris FreeBSD/Alpha shouldn't use anything higher than -O. I assume that's "for now"... Until it's fixed by gcc, yeah. My understanding is that it's a gcc 2.95.x bug on the alpha. Kris -- In

installing openssl on WIN32

2000-09-22 Thread Shashank
I messed up with my previous installation, and so have to reinstall openssl .. I tried.. nmake -f ms\ntdll.mak and it worled successfully...and tested it with,, cd out32dll ..\ms\test and said all correct.. but openssl/bin /include /lib are not created...

Re: installing openssl on WIN32

2000-09-22 Thread Richard Levitte - VMS Whacker
From: Shashank [EMAIL PROTECTED] shashank cd out32dll shashank ..\ms\test shashank and said all correct.. shashank shashank but openssl/bin shashank /include shashank /lib are not created... That doesn't happen by itself. If you downloaded 0.9.6-beta3

Re-installing on win prob

2000-09-22 Thread Shashank
I am following each line from install.win32 file.. am using cygwin32 perl Configure VC-WIN32 ms\do_ms vcvars32 nmake -f ms\ntdll.mak all are successful. cd out32dll ..\ms\test fine.. now for compiling OpenSSL for creating lib and bin when I do ms\mingw32 or ms\mingw32 no-asm

Re: Re-installing on win prob

2000-09-22 Thread Shashank
but conio.h is there and in path confirmed.. Shashank wrote: I am following each line from install.win32 file.. am using cygwin32 perl Configure VC-WIN32 ms\do_ms vcvars32 nmake -f ms\ntdll.mak all are successful. cd out32dll ..\ms\test fine.. now for compiling OpenSSL for

Re: Re-installing on win prob

2000-09-22 Thread Richard Levitte - VMS Whacker
From: Shashank [EMAIL PROTECTED] shashank but conio.h is there and in path confirmed.. Where exactly is conio.h? -- Richard Levitte \ Spannvägen 38, II \ [EMAIL PROTECTED] Chairman@Stacken \ S-168 35 BROMMA \ T: +46-8-26 52 47 Redakteur@Stacken \ SWEDEN \ or +46-709-50 36

Re: Re-installing on win prob

2000-09-22 Thread Shashank
conio.h is here: C:\Program Files\Microsoft Visual Studio\VC98\Include\CONIO.H shashank but conio.h is there and in path confirmed.. Where exactly is conio.h? -- Richard Levitte \ Spannvägen 38, II \ [EMAIL PROTECTED] Chairman@Stacken \ S-168 35 BROMMA \ T:

problem with raw signature

2000-09-22 Thread drajesh
hi, I have a smart card which signs the data and gives the signature in raw format(raw signature).But the verifying tool needs the signature in PKCS7 format.I don't have any idea of how to do this?.Can anyone suggest a detailed solution for this problem. DRajesh drajesh e-mail: [EMAIL

Re: [BUG] X509_V_ERR_SUBJECT_ISSUER_MISMATCH weirdness

2000-09-22 Thread Bodo Moeller
On Fri, Sep 22, 2000 at 03:31:06PM +0200, Lutz Jaenicke wrote: I just tried Postfix/TLS 0.9.6 and found problems with certificate verification: 0.9.6 returned X509_V_ERR_SUBJECT_ISSUER_MISMATCH on a completely valid certificate. [...] Do you use a verify_callback? I'm working over a

bad mac decode in ssl handshake

2000-09-22 Thread Tim Tassonis
Hi When I try to contact the following SSL site with s_client, I cannot connect: www.genowebpayment.de:443 I haven't got an idea what web server they're using, but I can connect successfully with Netscape Communicator 4.75 under Linux for instance. The error occurs under 0.95a and 0.9.6-beta3

Re: openssl doc at http://www.columbia.edu/~ariel/ssleay/

2000-09-22 Thread Ariel Glenn
Oh well, as long as I am answering old mail before reading the replies :( Since I see that U.S. code is accepted, I surmise that U.S. docs may also now be accepted. I'd be happy to try to bring the libcrypto docs up to date if someone wants to point me to the currently agreed upon format for

Re: [BUG] X509_V_ERR_SUBJECT_ISSUER_MISMATCH weirdness

2000-09-22 Thread Dr S N Henson
Bodo Moeller wrote: On Fri, Sep 22, 2000 at 03:31:06PM +0200, Lutz Jaenicke wrote: I just tried Postfix/TLS 0.9.6 and found problems with certificate verification: 0.9.6 returned X509_V_ERR_SUBJECT_ISSUER_MISMATCH on a completely valid certificate. [...] Do you use a

Re: RSA_private_encrypt

2000-09-22 Thread Montini Paolo
Thanks very much for the suggestion. It is not enough to free and null rsa-p, rsa-q, rsa-dmp1 and rsa-dmq1. You have also to set them with new values such as : ctx = BN_CTX_new(); BN_clear(rsa-d); rsa-d = BN_copy((BIGNUM*)rsa-d, (const BIGNUM*)new_privkey); err = BN_mod(rsa-dmp1,

Re: openssl doc at http://www.columbia.edu/~ariel/ssleay/

2000-09-22 Thread Ariel Glenn
Not included; there are links from several pages on the openssl site. ariel Someone just sent me this link: http://www.columbia.edu/~ariel/ssleay/ It looks like some very helpful, if dated, documentation. Is this already included with OpenSSL and I just missed it? Might be nice to at

Re: openssl doc at http://www.columbia.edu/~ariel/ssleay/

2000-09-22 Thread Richard Levitte - VMS Whacker
From: Ariel Glenn [EMAIL PROTECTED] ariel I'd be happy to try to bring the libcrypto docs up to date if ariel someone wants to point me to the currently agreed upon format ariel for openssl docs. The format used is .pod. The structure is currently pretty much as you can see it on

Re: [BUG] X509_V_ERR_SUBJECT_ISSUER_MISMATCH weirdness

2000-09-22 Thread Lutz Jaenicke
On Fri, Sep 22, 2000 at 07:12:15PM +0100, Dr S N Henson wrote: Well the point of that stuff is to allow a log of all the extra checks being made. Things that were tolerated before (such as mismatched key ids) are not tolerated now. The callback will not be called with those extra checks

Re: static (and unresolved) linkage of RegQueryValueEx in crypto/rand/rand_win.c

2000-09-22 Thread Jeffrey Altman
Hello, crypto/rand/rand_win.c assumes that function RegQueryValueEx, exported by advapi32.dll, is linked in statically. As advapi32.lib is not linked in it gives build error. This problem should have been fixed in the latest snapshot. Jeffrey Altman * Sr.Software

Re: static (and unresolved) linkage of RegQueryValueEx in crypto/rand/rand_win.c

2000-09-22 Thread Richard Levitte - VMS Whacker
From: "Risto Laanoja" [EMAIL PROTECTED] risto.laanoja crypto/rand/rand_win.c assumes that function risto.laanoja RegQueryValueEx, exported by advapi32.dll, is linked in risto.laanoja statically. This has been fixed by adding advapi32.lib to the static library. It's an ugly hack, but it works.

HP-UX 11.00 compilation/test success with problem

2000-09-22 Thread Heiko Nardmann
I just compiled openssl-0.9.6-beta3 successfully on an HP-UX 11.00 using HP-UX ANSI/C compiler. However the s_client is not working here, too, as already stated by Hartmut Lehnert on the openssl-bugs mailing list :-( No compilation report using gcc since gcc-2.95.2 does not support HP-UX 11.00.