Re: server Certificate verification help!

2001-02-01 Thread Greg Stark
Evan, The third parameter to SSL_CTX_load_verify_locations() does not do what you think. If you have one file with your root CA certificate, make that filename the second parameter and leave the third NULL, as in SSL_CTX_load_verify_locations(ctx,CERT_FILE, NULL) see if that works any

More help on server certificate verification

2001-02-01 Thread Evan Cross
Hi again, I have finally managed to get the trusted certificate to load into the application but now I am getting errors about the certificate chain being to long. The server only sends its certificate and the client loads the Root CA cert to verify the server certificate. As I stated

RE: ????????--???

2001-02-01 Thread Marco Cunha
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: quinta-feira, 1 de Fevereiro de 2001 10:33 To: [EMAIL PROTECTED] Subject: RE: --??? [snip] I'm not wishing to drift off into too technical a discussion, but

CRL Formats

2001-02-01 Thread Tim Tassonis
Hi I've got a question regarding crl formats. Until now, I found two mime types for use with crl's: "application/pkix-crl", which seems to be either a DER or PEM formatted crl as in openssl crl. "application/x-pkcs7-crl", which, I would guess at least by its name, should be a pkcs7 file

RE: ????????--???

2001-02-01 Thread John . Airey
-Original Message- From: Marco Cunha [mailto:[EMAIL PROTECTED]] Sent: 31 January 2001 15:45 To: [EMAIL PROTECTED] Subject: RE: --??? [snip] If the list already shouldn't accept email from the "outside"... then there's something very wrong with majordomo. Thank you

Re: OpenSSL on HP/UX

2001-02-01 Thread philip . chase
Yes! You may need to use a file "$HOME/.rnd" and stick some random data in it, but it does work. Philip Chase Senior Technical Specialist DST Canada Inc. (416) 204-6316

Borland C++ Builder 5.0 support

2001-02-01 Thread ygingras
Hi, Is there a way to compile OpenSLL library to use it with Borland C++ 5.0 ? Thanks --- Yannick Gingras Network Programer __ OpenSSL Project http://www.openssl.org User Support Mailing List

Please, can someone walk me through getting my https://... URL working ?

2001-02-01 Thread EPEE LEA Daniel
Everyone, I run Apache 1.3.12 OpenSSl 0.9.6 I 've installed OpenSSL , and yet i've been looking for a walk through to have the URL https://my_server working. Thanks for your help Regards -- EPEE LEA DANIEL [EMAIL PROTECTED] DOUALA1.COM SA Tel/fax: 237 42 42 62 PROJECT ENGINEER Mobile: 237 92 41

Re: Please, can someone walk me through getting my https://...

2001-02-01 Thread Michael
Everyone, I run Apache 1.3.12 OpenSSl 0.9.6 I 've installed OpenSSL , and yet i've been looking for a walk through to have the URL https://my_server working. Thanks for your help you also will probably need one of these modules. apache-ssl or mod-ssl. the documentation that comes with

Re: sgc

2001-02-01 Thread Dr S N Henson
Itai Levy wrote: Hi, I'm using a web server based on openssl 0.9.5. When I use a certificate which enables the use of SGC, I have a problem to connect with IE 5.01 browsers. I know that the reason for this is that there is a bug in the implementation of SGC in IE 5.01. I use the

Re: verify_depth confusion (my brain hurtz)!!!

2001-02-01 Thread Dr S N Henson
Evan Cross wrote: Hi again, I think i have finally found the problem I have been having. I re wrote to verify_callback function to something similar to that in s_cb.c. I have a verify_depth set at zero but my depth read from X509_STORE_CTX_get_error_depth(ctx) is always 1. My