Re: virtual host setup with same certificates

1999-07-20 Thread Holger Reif
Steven J Sobol schrieb: > > On Wed, Jul 21, 1999 at 09:27:09AM +1200, Juergen Rensen wrote: > > > When a SSL connection is established, the server will only see the IP > > address (or IP/Port address), therefore the https request is always > > resolved to be for your "main" server. > > I have n

Re: virtual host setup with same certificates

1999-07-20 Thread Michael
On Tue, 20 Jul 1999, Steven J Sobol wrote: > On Wed, Jul 21, 1999 at 09:27:09AM +1200, Juergen Rensen wrote: > > > When a SSL connection is established, the server will only see the IP > > address (or IP/Port address), therefore the https request is always > > resolved to be for your "main" se

ciphers

1999-07-20 Thread Timothy Canfield
What is the correct way to set the ciphers you want to use? Currently I'm doing this: SSL_CTX_set_tmp_rsa_callback(ssl_ctx,tmp_rsa_cb) where: static RSA *tmp_rsa_cb(SSL *s, int export, int keylength) { static RSA *rsa_tmp=NULL; if (rsa_tmp == NULL) { rsa_tmp=RSA_generate_key(keylengt

Re: virtual host setup with same certificates

1999-07-20 Thread Steven J Sobol
On Wed, Jul 21, 1999 at 09:27:09AM +1200, Juergen Rensen wrote: > When a SSL connection is established, the server will only see the IP > address (or IP/Port address), therefore the https request is always > resolved to be for your "main" server. I have no experience with named SSL virtual hos

compile issues

1999-07-20 Thread hUnTeR
Bodo Moeller wrote: > > /usr/lib/perl5 is a directory, not an executable (but why is /usr/lib > in your PATH?). That is a known bug in Configure; to fix it, change > Configure as follows: > > --- Configure 1999/06/09 23:29:23 1.102 > +++ Configure 1999/06/10 08:13:52 1.103 > @@ -753

Re: virtual host setup with same certificates

1999-07-20 Thread Michael Stroeder
morgan wrote: > > I set up some name based virtual hosts on a linux machine with apache. > [..] > The virtual host part > works fine for all 3, however if I go to https://blah.company.com it > serves up the document root pages for www.company.com instead!??!?! IMHO you can't use name based virtu

RE: virtual host setup with same certificates

1999-07-20 Thread Juergen Rensen
When a SSL connection is established, the server will only see the IP address (or IP/Port address), therefore the https request is always resolved to be for your "main" server. You can either configure multiple IP addresses or different IP address/Port combinations for multiple SSL sites on th

Re: Problems building openssl 0.9.3a on Solaris 2.5.1 (and also NetBSD 1.3.3 x86)

1999-07-20 Thread James Webster
For NetBSD, removing the -D_ANSI_SOURCE in the Configurate file fixed the problem. - Original Message - From: Sarah Bateman <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 20, 1999 8:46 AM Subject: Re: Problems building openssl 0.9.3a on Solaris 2.5.1 (and also NetBSD 1.3.

CELO, SET

1999-07-20 Thread Clark C. Evans
Hello all. Two questions: * Is there a group working on a SET (Visa/Mastercard *sigh*) certificate management solution? * How do you all feel about Cleo? Thanks! Clark Evans __ OpenSSL Project

virtual host setup with same certificates

1999-07-20 Thread morgan
I set up some name based virtual hosts on a linux machine with apache. I want to get the virtual hosts to use the same certificate as the "main" server (there is www.company.com as well as blah.company.com and blahblah.company.com on the same machine) The virtual host part works fine for all

PEM pass phrase

1999-07-20 Thread Shalom Nevet
Dear open-ssl experts, Is there a way to create a certificate without PEM pass phrase? By using the "CA.sh" script to create certificate, you will be prompt for PEM phrase. It may be a good idea, however, in the need for server re-boot (auto-boot) the server will pause for user to enter password

Re: Compile problems

1999-07-20 Thread Bodo Moeller
hUnTeR <[EMAIL PROTECTED]>: > I am trying to build openssl-0.9.3a on a RedHat 5.2 Linux 2.0.36 server > and receiving a critical error, as follows: > > ~/temp/openssl-0.9.3a/ ./config --prefix=/usr/local --openssldir=/usr/local/openssl [...] > PERL =/usr/lib/perl5 [...] > make: execvp:

Re: Compiling Net_SSLeay.pm V1.03

1999-07-20 Thread Bodo Moeller
KonectaNet <[EMAIL PROTECTED]>: > I would love to have an answer for this one too >> Has anyone had any success trying to compile >> Net_SSLeay.pm V1.03 with openssl 0.9.3a. >> >> I have tried on HPUX 10.20 and Solaris 2.4 with pelr 5.005_02 >> and I get the same error message Use a recent sn

Re: Problems building openssl 0.9.3a on Solaris 2.5.1 (and also NetBSD 1.3.3 x86)

1999-07-20 Thread Sarah Bateman
James Webster wrote: > > Was there ever a resolution on this (I wasn't on the list when it was sent)? I'm >seeing the same thing on i586-whatever-netbsd. > > Thanks, > James > > > List: openssl-users > > Subject: Re: Problems building openssl 0.9.3a on Solaris 2.5.1 > > From: [EMAIL

Re: Format of PEM RSA Private Key

1999-07-20 Thread lukhaub
Stephen Henson wrote: > Keith Johnston wrote: > > > > The encrypted format of the RSA private key looks like this: > > > > -BEGIN RSA PRIVATE KEY- > > Proc-Type: 4,ENCRYPTED > > DEK-Info: DES-EDE3-CBC,EBC485A7EC86234E > > [...] > > -END RSA PRIVATE KEY- > > > > I'm trying to us

Re: Passing user data to password callbacks

1999-07-20 Thread Bodo Moeller
On Tue, Jul 20, 1999 at 02:36:54PM +0200, Bodo Moeller wrote: [...] > Programs that access that structure directly cannot reasonably expect > binary compatability across library versions. Clean programs handle > SSL_CTX's only as pointers. A problem is just that, in case the > application is wr

Re: Passing user data to password callbacks

1999-07-20 Thread Ben Laurie
Bodo Moeller wrote: > > On Tue, Jul 20, 1999 at 10:55:20AM +0100, Ben Laurie wrote: > > Bodo Moeller: > > So, is backwards compatibility an important issue here > and is it worth this kind of evil hack, or should we > just add the parameters? > > >>> Backward compatibility is an

Re: Passing user data to password callbacks

1999-07-20 Thread Bodo Moeller
On Tue, Jul 20, 1999 at 10:55:20AM +0100, Ben Laurie wrote: > Bodo Moeller: So, is backwards compatibility an important issue here and is it worth this kind of evil hack, or should we just add the parameters? >>> Backward compatibility is an important issue. Think "dynamic >>> li

Re: Passing user data to password callbacks

1999-07-20 Thread Bodo Moeller
On Tue, Jul 20, 1999 at 10:02:05AM +1000, Damien Miller wrote: >>> Backward compatibility is an important issue. Think "dynamic >>> library". >> The funny thing here is that if we just add the parameters, then on >> systems with "standard" calling convention old programs should run >> without a

Re: certificate problem :-( (solved)

1999-07-20 Thread Barry Hill
Hi Erik, thanks for replying. I received your mail but not via the list - it hasn't appeared there (yet) ... Problem solved: As usual it was annoyingly simple (and embarassing). I was assuming that when I did a "make certificate" the certificate in "/www/conf" would be altered, but it wasn

Re: Passing user data to password callbacks

1999-07-20 Thread Ben Laurie
Bodo Moeller wrote: > > On Tue, Jul 20, 1999 at 01:20:52AM +0200, Richard Levitte - VMS Whacker wrote: > > >> So, is backwards compatibility an important issue here > >> and is it worth this kind of evil hack, or should we > >> just add the parameters? > > > Backward compatibility is an importa

Re: Passing user data to password callbacks

1999-07-20 Thread Ben Laurie
Richard Levitte - VMS Whacker wrote: > > Bodo_Moeller> > Please find attached a patch against openssl-SNAP-19990718 > Bodo_Moeller> > which modifies the pem/* stuff to take an extra > Bodo_Moeller> > argument of type void* to all the functions which use > Bodo_Moeller> > a password callback. It a

Re: Passing user data to password callbacks

1999-07-20 Thread Richard Levitte - VMS Whacker
3moeller> > Backward compatibility is an important issue. Think "dynamic 3moeller> > library". 3moeller> 3moeller> The funny thing here is that if we just add the parameters, 3moeller> then on systems with "standard" calling convention old 3moeller> programs should run without any problems with