Load Cert Notification

2000-10-12 Thread Peter Liem
It is noted that Netscape browser doesn't have any reponse after loaded the client certificate, it just loaded the certificate sliently. I wonder is that any method(e.g. Dialog box) to let the netscape browser to notify the user that the certificate has been loaded into the browser? Best regards,

Re: Client not sending CA's certificate

2000-10-12 Thread Ari Pirinen
Dave, Here's how it works as far as I understand: when the server wants to verify the client, it sends to the client the CAs that it accepts. And only if the client has certificates that are signed with the mentioned CAs they are sent back to server for verification purposes. The CAs that are se

Bus Error(10)?

2000-10-12 Thread Justin Hinrichs
I'm attempting to set up a secure web server. However, everytime I attempt to connect to https://mysecureserver.com I get a "A network error has occured while netscape was receiving data" error. In the apache error_log I get a "child pid 21035 exit signal Bus Error(10) message. I'm trying to t

Re: Error building 0.9.6 with ms\mingw32 on NT4

2000-10-12 Thread Ulf Moeller
On Wed, Oct 11, 2000, Doug Serres wrote: > I am getting the error below when trying to build the 0.9.6 distribution using > Mingw32 on Windows NT 4 SP6. (I can build 0.9.5a with the same machine.) Where > can I get the missing files? >From a more recent Mingw32 distribution. If you don't want to

Re: Import cert to MS Internet Server

2000-10-12 Thread arehn
You can make a cert request from IIS management -> security properties, sign that request with your demoCA cert and then install the cert in IIS (from the sam dialog). Regards Andreas "Jim Hud" <[EMAIL PROTECTED]> on 2000-10-12 16:54:58 Please respond to [EMAIL PROTECTED] To: [EMAIL P

Client not sending CA's certificate

2000-10-12 Thread D.Dave
I've been running some tests with the s_server app (OpenSSL 0.9.5). It's set to demand client authentication with the -Verify option, and I'm pointing to a directory of CA's using the -CApath parameter. Now, when a client (s_client, Netscape or IE) connects and offers a certificate that is signe

Import cert to MS Internet Server

2000-10-12 Thread Jim Hud
Is it possible to use a demo CA and certificate with MS Internet Information Server? I have looked at the faq's and can't find anything to help. Thanks __ OpenSSL Project http://www.openssl.org

Configuring OpenSSL to compile on Dynix - Sequent System

2000-10-12 Thread Fuller, Russ
Title: Configuring OpenSSL to compile on Dynix - Sequent System To all I am having a problem getting openssl complied on my Sequent system.  My OS version is Dynix 4.4.7.  I have tried the open options in the config script, however nothing seems to work.  Any suggestions. Russ.

Re: Checking an SSL connection . . .

2000-10-12 Thread Steve Quirk
I use this: SSL *ss; int rc, connected; while ( !connected ) { rc = SSL_connect(ss); /* returns '1' on success */ connected = ((rc == 1) && SSL_is_init_finished(ss)); if (rc <= 0) {

Re: Certificate form for LDAP userCertificate

2000-10-12 Thread Sergio Rabellino
Michael David wrote: > > In a LDAP directory, certificates can be stored as binary > data under the attribute "userCertificate". > > Which of the certificate formats that OpenSSL can produce is > the correct one to use for this? You can use the PEM format (baSe 64) output of the sign process, wi

Re: certificate verification

2000-10-12 Thread Vadim Fedukovich
On Wed, 11 Oct 2000, Adam Wiggins wrote: > > Greetings, > >I am writing a client/server app in which the client needs to validate > that the server it is connecting to is actually who it claims to be. > The server is using a self-signed certificate. The logic would > (hopefully) be along t

SV: Certificate form for LDAP userCertificate

2000-10-12 Thread Hellan,Kim KHE
You should use a DER encoded certificate. Kim Hellan -Oprindelig meddelelse- Fra: Michael David [mailto:[EMAIL PROTECTED]] Sendt: 27. september 2000 23:10 Til: [EMAIL PROTECTED] Emne: Certificate form for LDAP userCertificate In a LDAP directory, certificates can be stored as binary da

Re: Crypt::SSLeay

2000-10-12 Thread Joshua Chamas
Christopher Sagayam wrote: > > I used the latest openssl now > > I installed openssl in my local directory > > and correctly pointed it in the installation of Crypt"SSleay > > but still lwp wont access https > Did you "make install" after compiling Crypt::SSLeay? What does running net_ssl_te

Re: Which perl modules for SSL?

2000-10-12 Thread Joshua Chamas
Antonio de Almeida wrote: > > Hi, > > I'm new to the list and have a pretty beginner request. > I coudn't find an answer in the FAQ's and in the archive so > I hope that somebody can help me. > > My intension to develop a perl script that use Sockets > for the communication and SSL to protect t

Re: Checking an SSL connection . . .

2000-10-12 Thread Lutz Jaenicke
On Wed, Oct 11, 2000 at 06:39:08PM -0400, Louis LeBlanc wrote: > My question now is this: Is there a specific state, or (small) set of > states, that I can check for on any SSL connection (for all versions) > and verify that the connection is established, and ready for some kind > of I/O? Wait f