Re: bug: Win32 generation with debug option

2000-02-18 Thread Gleb Esman
Could anyone please let me know where I could get 0.9.5 from? Thanks, -- Gleb Esman >On Thu, Feb 17, 2000 at 06:48:36PM -0500, Richard Dykiel wrote: > > > Error in bn_div.c: > > #if defined(BN_LLONG) && defined(BN_DIV2W) && !defined(bn_div_words) > >q=BN_ULLONG)n0)< > #else > >q=bn_d

Re: bug: Win32 generation with debug option

2000-02-18 Thread Ulf Möller
On Thu, Feb 17, 2000 at 06:48:36PM -0500, Richard Dykiel wrote: > Error in bn_div.c: > #if defined(BN_LLONG) && defined(BN_DIV2W) && !defined(bn_div_words) >q=BN_ULLONG)n0)< #else >q=bn_div_words(n0,n1,d0); > #endif That is corrected in the current OpenSSL 0.9.5-dev snapshot. ___

Re: Would please help on this error message this a UNix Solaris 2.6 A pache server

2000-02-18 Thread Ulf Möller
On Wed, Feb 16, 2000 at 06:06:36PM -0500, Fais Nasser wrote: > ar r ../libcrypto.a cryptlib.o mem.o cversion.o ex_data.o tmdiff.o > cpt_err.o > make[1]: ar: Command not found You'll have to make sure that "ar" is in your path to compile any library. __

Re: Latest SNAPSHOT, 2 questions

2000-02-18 Thread Ulf Möller
On Fri, Feb 18, 2000 at 10:35:33AM +1100, Damien Miller wrote: > The Linux/Unix port of OpenSSH will be switching over to a Unix port of > Schneier and Kelsey's Yarrow PRNG in the not too distant future. It might > make a good PRNG for OpenSSL too. The OpenSSL PRNG fulfills its purpose perfectly

Re: Need helo

2000-02-18 Thread Ulf Möller
On Mon, Feb 14, 2000 at 10:38:55AM -0500, Rajagopal Natesamudali wrote: > > perl Configure Mingw32 > Can't locate strict.pm in @INC at Configure line 9. > BEGIN failed--compilation aborted at Configure line 9. Either your copy of Perl is outdated, or it is not properly in

Re: SSL_CTX

2000-02-18 Thread Bodo Moeller
Chris Bamford <[EMAIL PROTECTED]>: >> Do you provide mutexes to the library? For multi-threaded applications, >> the following calls are required in initialization: >> >> CRYPTO_set_id_callback(id_callback); >> CRYPTO_set_locking_callback(locking_callback); > Hmmm. Please bear

Re: Can't have SSL with multiple domain names on a single server...

2000-02-18 Thread paulfordh
People wrote >> It would be really nice to take advantage of Apache's multiple virtual >> domain capability in conjunction with SSL and have a certificate that >> didn't cause a 'Certificate Name Check' dialog to pop up on every >> connection for domains other than the one in the certificate. >

Re: SSLeay-0.6.4 is not thread safe?

2000-02-18 Thread Dr Stephen Henson
Bodo Moeller wrote: > > Richard Levitte - VMS Whacker <[EMAIL PROTECTED]>: > > >>SSLeay_add_ssl_algorithms ();<---*(1) > > >>SSL_load_error_strings ();<---*(1) > > > (1) These are really only mean to be used ONCE for

Re: SSLeay-0.6.4 is not thread safe?

2000-02-18 Thread Bodo Moeller
Richard Levitte - VMS Whacker <[EMAIL PROTECTED]>: >>SSLeay_add_ssl_algorithms ();<---*(1) >>SSL_load_error_strings ();<---*(1) > (1) These are really only mean to be used ONCE for the whole > application. The ssl

RE: Can't have SSL with multiple domain names on a single server...

2000-02-18 Thread mads
Rod Gilchrist wrote: > Anyone have a solution to this? Think there will be one? The really ugly hack is to create a certificate with CN *.company.com. Not really a very nice solution, but recent Nutscrape and Mickeysploder versions seems to accept it. > If the server name or URL came across fr

Re: Can't have SSL with multiple domain names on a single server...

2000-02-18 Thread Ben Laurie
Rod Gilchrist wrote: > > Hi, > > It would be really nice to take advantage of Apache's multiple virtual > domain capability in conjunction with SSL and have a certificate that > didn't cause a 'Certificate Name Check' dialog to pop up on every > connection for domains other than the one in the c

running httpd.conf

2000-02-18 Thread Osvaldo Brito
HELLO WORLD, - When I run httpd.conf I get this error message: Syntax error : SSLRevocationFile: file ../../conf/ssl.crl/ca-bundle.crl not exists or empty. What's the problem? - The SSL server must run in virtual host? - If I just load the httpd.conf.default, will the server response to

bug: Win32 generation with debug option

2000-02-18 Thread Richard Dykiel
OpenSSL-0.9.4 Visual C++ 6.0 WinNT4.0 sp5   Generated the makefiles for debug as explained in install.w32 Compiler warning when recompiling for debug in bn_div.c line 242Modified VC-32.pl to suppress -DWINDOWS which caused errorRecompiled with debug optionsTested --> OK Why do we use -DWINDOW

How to check a certificate is revoked in cms.crl file withopenss l

2000-02-18 Thread Venkatesha, Ashalatha
Hi all, Can anyone help me in this urgently. I have a Certificate Revocation List file which is a binary file. Does any function in openssl supports in checking a certificate in that file. When the client certificate is requested, it has to be checked against the file cms.crl file to check whet

Need helo

2000-02-18 Thread Rajagopal Natesamudali
Hello, I am getting the following error message when I try to install the openssl pkg in Windows NT. > perl Configure Mingw32 Can't locate strict.pm in @INC at Configure line 9. BEGIN failed--compilation aborted at Configure line 9. > perl Configure -t

Would please help on this error message this a UNix Solaris 2.6 Apache server

2000-02-18 Thread Fais Nasser
# make making all in crypto... make[1]: Entering directory `/data/v01/temp/openssl-0.9.4/crypto' ( echo "#ifndef MK1MF_BUILD"; \ echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \ echo " #define CFLAGS \"gcc -DTHREADS -D_REENTRANT -mcpu=ultrasparc -O3 -fomit\ echo " #d

Can't get a client/inetd to work under openssl

2000-02-18 Thread Ron Levine
I used the cli.cpp, serv.cpp and inetdsrv.cpp in openssl-0.9.4/demo/ssl. I changed the directory for HOME, CERTF and KEYF to reflect my fully qualified directory, certificate and key files. I added the line inetdsrv stream tcp nowait root /export/home/rlevine/inetdsrv inetdsrv to /etc/inetd.conf

Re: SSL_CTX

2000-02-18 Thread Chris Bamford
Bodo, Thanks for the response. Bodo Moeller wrote: > > Chris Bamford <[EMAIL PROTECTED]>: > > > I wonder if anyone can help? I am getting occasional core dumps > > when using SSL_CTX_free() in a multi-threaded application. > [...] > > Do you provide mutexes to the library? For multi-threade

SSL / Multi-threading

2000-02-18 Thread Chris Bamford
Hi, Excuse my ignorance, but how do I access the code file "mttest.c" as described in the web page http://speclab.ucd.ie/doc/ssleay/doc/threads.txt ("How to compile SSLeay for multi-threading")? Thanks, -- Chris __ OpenSSL Pro