RE: mutual-TLS / mTLS Example with certificate problem

2020-05-14 Thread Michael Wojcik
> From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of > Andreas Tengicki > Sent: Thursday, May 07, 2020 03:23 > > 3) myserver vs openssl (and my client) is not working Did you do what I told you to do in my previous message? That is: > > Get rid of the call to use_certific

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-07 Thread Kyle Hamilton
On a tangent, this file format (and order) was actually finally standardized as "application/pem-certificate-chain" by RFC 8555 section 9.1 (the Automatic Certificate Management Environment protocol, or ACME). On Wed, May 6, 2020 at 2:59 PM Michael Wojcik wrote: > Get rid of the call to use_certi

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-07 Thread Raja Ashok
Hi Andreas, Below repo has examples to use OpenSSL for mTLS (mutual certificate authentication) with sample certificates. You can refer this. https://github.com/TalkWithTLS/TalkWithTLS/blob/master/src/sample/openssl_tls13_server_both_auth.c https://github.com/TalkWithTLS/TalkWithTLS/blob/master/s

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-07 Thread Andreas Tengicki
ssl-users-boun...@openssl.org] On Behalf Of >> Andreas Tengicki >> Sent: Wednesday, May 06, 2020 12:45 >> To: openssl-users@openssl.org >> Subject: mutual-TLS / mTLS Example with certificate problem >> >> I can not find a working mutual-TLS server/client example on g

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-07 Thread Matt Caswell
On 06/05/2020 19:44, Andreas Tengicki wrote: >     SSL_CTX_set_ecdh_auto(srvCtx->ctx, 1); Viktor and Michael have already provided some excellent advice on this so I won't cover the same ground. Just one note on this line though - this is actually unnecessary in modern versions of OpenSSL (anythin

RE: mutual-TLS / mTLS Example with certificate problem

2020-05-06 Thread Michael Wojcik
> From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of > Andreas Tengicki > Sent: Wednesday, May 06, 2020 12:45 > To: openssl-users@openssl.org > Subject: mutual-TLS / mTLS Example with certificate problem > > I can not find a working mutual-TLS ser

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-06 Thread Viktor Dukhovni
On Wed, May 06, 2020 at 08:44:57PM +0200, Andreas Tengicki wrote: >     SSL_CTX_load_verify_locations(srvCtx->ctx,NULL,"../certs"); // Have you run "c_rehash" on "../certs" (not keen on relative file names here myself). > Client Side > = > >     SSL_CTX_set_ecdh_auto(ctx, 1); >    

Re: mutual-TLS / mTLS Example with certificate problem

2020-05-06 Thread Viktor Dukhovni
On Wed, May 06, 2020 at 08:44:57PM +0200, Andreas Tengicki wrote: > I can not find a working mutual-TLS server/client example on github or > the whole internet. Only some example for pieces of code. Communication > via socket without and with encryption (openSSL) is working, but with > mTLS not. I

mutual-TLS / mTLS Example with certificate problem

2020-05-06 Thread Andreas Tengicki
Hello, I can not find a working mutual-TLS server/client example on github or the whole internet. Only some example for pieces of code. Communication via socket without and with encryption (openSSL) is working, but with mTLS not. I believe that I theoretical understand mTLS, but the practice will

Re: Certificate problem - SOLVED

2014-07-10 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Jeffrey Walton > Sent: Tuesday, July 08, 2014 20:33 > On Tue, Jul 8, 2014 at 7:00 PM, Dave Thompson > wrote: > >> From: owner-openssl-us...@openssl.org On Behalf Of Jeffrey Walton > >> Sent: Tuesday, July 08, 2014 16:20 > > ... > >> Not sure if

Comparison trickery (Was: Certificate problem - SOLVED)

2014-07-09 Thread Dirk-Willem van Gulik
Op 9 jul. 2014, om 02:33 heeft Jeffrey Walton het volgende geschreven: > On Tue, Jul 8, 2014 at 7:00 PM, Dave Thompson wrote: >>> From: owner-openssl-us...@openssl.org On Behalf Of Jeffrey Walton >>> Sent: Tuesday, July 08, 2014 16:20 >> ... >>> Not sure if this is any consolation, but country

Re: Certificate problem - SOLVED

2014-07-08 Thread Jeffrey Walton
On Tue, Jul 8, 2014 at 7:00 PM, Dave Thompson wrote: >> From: owner-openssl-us...@openssl.org On Behalf Of Jeffrey Walton >> Sent: Tuesday, July 08, 2014 16:20 > ... >> Not sure if this is any consolation, but countryName is a >> DirectoryString, and PrintableString is OK per RFC 5280 >> (http://t

Re: Certificate problem

2014-07-08 Thread Dr. Stephen Henson
On Mon, Jul 07, 2014, Dave Thompson wrote: > > The only thing that springs to mind that could be invisible is string types > and > some options of the cert Issuer fields vs the CA Subject. RFC 5280 requires > a > fairly complicated Unicode-aware comparison algorithm which I believe > openssl >

Re: Certificate problem - SOLVED

2014-07-08 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Jeffrey Walton > Sent: Tuesday, July 08, 2014 16:20 > On Tue, Jul 8, 2014 at 3:39 PM, Barbe, Charles > wrote: > > I figured it out and am now wondering if there is a defect in the openssl > verify command. This suggestion from Dave Thompson: >

Re: Certificate problem - SOLVED

2014-07-08 Thread Jeffrey Walton
On Tue, Jul 8, 2014 at 4:48 PM, Barbe, Charles wrote: > Also don't these lines of the spec: > > countryName ATTRIBUTE ::= { > WITH SYNTAX PrintableString (SIZE (2)) > -- IS 3166 codes only > ID

RE: Certificate problem - SOLVED

2014-07-08 Thread Barbe, Charles
.5565 From: owner-openssl-us...@openssl.org [owner-openssl-us...@openssl.org] on behalf of Barbe, Charles [charles.ba...@allworx.com] Sent: Tuesday, July 08, 2014 4:44 PM To: openssl-users@openssl.org Subject: RE: Certificate problem - SOLVED Yet openssl verify said OK to both of my certificates ag

RE: Certificate problem - SOLVED

2014-07-08 Thread Barbe, Charles
| 14604 charles.ba...@allworx.com | 585.421.5565 From: owner-openssl-us...@openssl.org [owner-openssl-us...@openssl.org] on behalf of Jeffrey Walton [noloa...@gmail.com] Sent: Tuesday, July 08, 2014 4:19 PM To: OpenSSL Users List Subject: Re: Certificate

Re: Certificate problem - SOLVED

2014-07-08 Thread Jeffrey Walton
On Tue, Jul 8, 2014 at 3:39 PM, Barbe, Charles wrote: > I figured it out and am now wondering if there is a defect in the openssl > verify command. This suggestion from Dave Thompson: > I would first try x509 -noout -subject|issuer -nameopt multiline,show_type > and see if that helps. > Pointed m

RE: Certificate problem - SOLVED

2014-07-08 Thread Barbe, Charles
Thompson [dthomp...@prinpay.com] Sent: Monday, July 07, 2014 4:03 PM To: openssl-users@openssl.org Subject: RE: Certificate problem > From: owner-openssl-us...@openssl.org On Behalf Of Barbe, Charles > Sent: Sunday, July 06, 2014 22:42 > I have the following certificates and associate

Re: Certificate problem

2014-07-07 Thread Kyle Hamilton
On 7/7/2014 8:24 PM, Barbe, Charles wrote: > > CHAD > >> On Jul 7, 2014, at 11:11 PM, "Jeffrey Walton" wrote: >> >> On Mon, Jul 7, 2014 at 9:59 PM, Barbe, Charles >> wrote: >>> I will try an ASN.1 decoder tomorrow. Thanks for the suggestion! >>> >>> One thing I did try today was to have both ser

Re: Certificate problem

2014-07-07 Thread Barbe, Charles
CHAD On Jul 7, 2014, at 11:03 PM, "Dave Thompson" wrote: >> From: owner-openssl-us...@openssl.org On Behalf Of Barbe, Charles >> Sent: Monday, July 07, 2014 21:59 > >> I will try an ASN.1 decoder tomorrow. Thanks for the suggestion! >> >> One thing I did try today was to have both servers ge

Re: Certificate problem

2014-07-07 Thread Barbe, Charles
CHAD > On Jul 7, 2014, at 11:11 PM, "Jeffrey Walton" wrote: > > On Mon, Jul 7, 2014 at 9:59 PM, Barbe, Charles > wrote: >> I will try an ASN.1 decoder tomorrow. Thanks for the suggestion! >> >> One thing I did try today was to have both servers generate their >> certificates using the same

Re: Certificate problem

2014-07-07 Thread Jeffrey Walton
On Mon, Jul 7, 2014 at 9:59 PM, Barbe, Charles wrote: > I will try an ASN.1 decoder tomorrow. Thanks for the suggestion! > > One thing I did try today was to have both servers generate their > certificates using the same private key. Theoretically I would expect the two > certs to then be exactl

RE: Certificate problem

2014-07-07 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Barbe, Charles > Sent: Monday, July 07, 2014 21:59 > I will try an ASN.1 decoder tomorrow. Thanks for the suggestion! > > One thing I did try today was to have both servers generate their certificates > using the same private key. Theoretically

Re: Certificate problem

2014-07-07 Thread Barbe, Charles
om: owner-openssl-us...@openssl.org > [mailto:owner-openssl-us...@openssl.org] On Behalf Of Barbe, Charles > Sent: Sunday, July 6, 2014 8:42 PM > To: openssl-users@openssl.org > Subject: Certificate problem > > I'm having a problem with generating certificates and I'

Re: Certificate problem

2014-07-07 Thread Barbe, Charles
As I said in another note, I will try to send the certs tomorrow. Thanks for the help! CHAD > On Jul 7, 2014, at 4:42 PM, "Kyle Hamilton" wrote: > > >> On 7/6/2014 7:41 PM, Barbe, Charles wrote: >> Does anybody have any suggestions on where to look to figure this out? A >> tool to use? >> >

Re: Certificate problem

2014-07-07 Thread Barbe, Charles
I am positive that I am installing the ca in the correct spot because connections to server B correctly show the CA cert as the trusted root when I view the certificate for the connection in the web browser. To be clear, openssl verify says that both certificates A and B are ok when I provide

RE: Certificate problem

2014-07-07 Thread Ben Wilson
: openssl-users@openssl.org Subject: Certificate problem I'm having a problem with generating certificates and I'm wondering if anybody has any suggestions on where to look. I have the following certificates and associated private keys: A - certificate A generated with one version of m

Re: Certificate problem

2014-07-07 Thread Kyle Hamilton
On 7/6/2014 7:41 PM, Barbe, Charles wrote: > Does anybody have any suggestions on where to look to figure this out? A tool > to use? > > I realize that actually attaching the certa might be helpful but I do not > have them handy as I write this. Please let me know if that might help > somebody

RE: Certificate problem

2014-07-07 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Barbe, Charles > Sent: Sunday, July 06, 2014 22:42 > I have the following certificates and associated private keys: > > A - certificate A generated with one version of my software not using openssl > B - certificate B generated with a new versi

Certificate problem

2014-07-06 Thread Barbe, Charles
I'm having a problem with generating certificates and I'm wondering if anybody has any suggestions on where to look. I have the following certificates and associated private keys: A - certificate A generated with one version of my software not using openssl B - certificate B generated with a ne

[FWD] I have a concatenate certificate problem

2008-12-04 Thread Lutz Jaenicke
: liau ching huang <[EMAIL PROTECTED]> Subject: I have a concatenate certificate problem To: [EMAIL PROTECTED] Dear all: I have a concatenate certificate file including device certificate ,sub CA certificate , root CA certificate with PEM Format. I trace supplicant log ,then it shows that o

CA.pl resign certificate problem

2008-09-30 Thread andys
Hi, If I'd like to sign a certificate for a server for which I had previously signed a certificate with a different server key how can I do this from the same CA using the builtin CA.pl script? It has saved something about the first time that a cert was signed for server x and now just gives

Re: Certificate problem on Windows XP client...

2008-08-25 Thread Kyle Hamilton
Under most circumstances, roots certificates must be installed in the Machine Root store, not in the User Root store. If you are looking to authenticate to a wireless network, you may need to install the certificate (and associated private key) to the Machine Certificates, not the User Certificate

Re: Certificate problem on Windows XP client...

2008-08-25 Thread Leonard F. Elia
I have had to add certs to two different places in Windows in order for the them be found. I added them using system32/certmgr -- but that is not enough. I have found I also need to add them using the certificate control panel in Internet Explorer. I use certs to sign documents in OpenOffice

Re: Certificate problem on Windows XP client...

2008-08-24 Thread Sergio
Venkata LK Mula escribió: Hi, With reference to the above mentioned subject, we have generated root, server and client certificates in .pfx (p12) and .der format in FreeRADIUS using OpenSSL, installed these certificates on the Windows XP client. And when I'm trying to associate the Windows c

Newbie certificate problem (using PKCS#7 in Apache)

2008-08-10 Thread Jeffrey Lyon
All, I have what is probably going to be an extremely newbie issue/question. I have a customer moving to us who uses Apache Tomcat with a PKCS#7 certificate and an accompanying .key file which looks rather foreign to me. Personally, i've never dealt with anything outside of the "plain vanilla" SSL

Re: cacert.pem selfsigned certificate problem

2004-11-25 Thread Dr. Stephen Henson
On Wed, Nov 24, 2004, Florin Angelescu wrote: > On Tuesday 23 November 2004 16:57, Dr. Stephen Henson wrote: > > On Tue, Nov 23, 2004, Florin Angelescu wrote: > > > Hello > > > I am trying to set up an ssl acces to ldap > > > following http://www.openldap.org/faq/data/cache/185.html > > > > > > i

Re: cacert.pem selfsigned certificate problem

2004-11-24 Thread Dr. Stephen Henson
On Wed, Nov 24, 2004, Florin Angelescu wrote: > On Wednesday 24 November 2004 11:44, Dr. Stephen Henson wrote: > > On Wed, Nov 24, 2004, Florin Angelescu wrote: > > > On Tuesday 23 November 2004 16:57, Dr. Stephen Henson wrote: > > > > On Tue, Nov 23, 2004, Florin Angelescu wrote: > > > > > Hello

Re: cacert.pem selfsigned certificate problem

2004-11-24 Thread Florin Angelescu
On Wednesday 24 November 2004 11:44, Dr. Stephen Henson wrote: > On Wed, Nov 24, 2004, Florin Angelescu wrote: > > On Tuesday 23 November 2004 16:57, Dr. Stephen Henson wrote: > > > On Tue, Nov 23, 2004, Florin Angelescu wrote: > > > > Hello > > > > I am trying to set up an ssl acces to ldap > > >

Re: cacert.pem selfsigned certificate problem

2004-11-24 Thread Dr. Stephen Henson
On Wed, Nov 24, 2004, Florin Angelescu wrote: > On Tuesday 23 November 2004 16:57, Dr. Stephen Henson wrote: > > On Tue, Nov 23, 2004, Florin Angelescu wrote: > > > Hello > > > I am trying to set up an ssl acces to ldap > > > following http://www.openldap.org/faq/data/cache/185.html > > > > > > i

Re: cacert.pem selfsigned certificate problem

2004-11-23 Thread Florin Angelescu
On Tuesday 23 November 2004 16:57, Dr. Stephen Henson wrote: > On Tue, Nov 23, 2004, Florin Angelescu wrote: > > Hello > > I am trying to set up an ssl acces to ldap > > following http://www.openldap.org/faq/data/cache/185.html > > > > i created my ca > > and signed the certificates for the server

Re: cacert.pem selfsigned certificate problem

2004-11-23 Thread Dr. Stephen Henson
On Tue, Nov 23, 2004, Florin Angelescu wrote: > Hello > I am trying to set up an ssl acces to ldap > following http://www.openldap.org/faq/data/cache/185.html > > i created my ca > and signed the certificates for the server and client > but i still get a 'self signed error' > i checked and i saw

cacert.pem selfsigned certificate problem

2004-11-23 Thread Florin Angelescu
Hello I am trying to set up an ssl acces to ldap following http://www.openldap.org/faq/data/cache/185.html i created my ca and signed the certificates for the server and client but i still get a 'self signed error' i checked and i saw that it was because of cacert.pem which is selfsigned questi

Client Certificate Problem

2002-06-06 Thread Jochen Vogel
hi, i created a CA and a ClientKey witch i imported in my Client. in httpd.conf i configured Alias /test/ "/opt/www/test/" Options Indexes Order allow,deny Allow from 192.168.0.142 SSLVerifyClient require SSLVerifyDepth 1 ./logs/ssl_engine_log <

Certificate problem

2002-05-21 Thread Mike Milligan
I am not able to create a server certificate that is recognized by Netscape.  The error I am encountering is "The Certificate is not valid for the attempted application.  I have scoured google but have not found the correct way to overcome this error. Here is what I have done. Created selfsigned CA

RE: Certificate Problem / get_peer_certificate + ssldump

2002-04-23 Thread Andrew T. Finnell
l Active Solutions L.L.C [EMAIL PROTECTED] > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Eric Rescorla > Sent: Monday, April 22, 2002 12:36 PM > To: [EMAIL PROTECTED] > Subject: Re: Certificate Problem / get_peer_certificate &

Re: Certificate Problem :)

2002-04-22 Thread Ales Privetivy
Hello, AFAIK by default client does not sends its certificate. You should do something like this: SSL_CTX_set_verify(context, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, 0); Maybe this should help. Regards Ales Privetivy > Dear fellow developers, >

Re: Certificate Problem / get_peer_certificate

2002-04-22 Thread Eric Rescorla
"Andrew T. Finnell" <[EMAIL PROTECTED]> writes: > I do not know. I do not have access to these machines they are > at our client's location. I suppose we could try and get them to install > ssldump and run it. Although I am not sure this is an option. ssldump can read data captured with 'tc

RE: Certificate Problem / get_peer_certificate

2002-04-22 Thread Andrew T. Finnell
Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Eric Rescorla > Sent: Monday, April 22, 2002 12:25 PM > To: [EMAIL PROTECTED] > Subject: Re: Certificate Problem / get_peer_certificate > > > "Andrew T. Finnell&qu

Re: Certificate Problem / get_peer_certificate

2002-04-22 Thread Eric Rescorla
"Andrew T. Finnell" <[EMAIL PROTECTED]> writes: > I do a SSL_get_peer_certificate and everything works for a while. > But all of a sudden I never get a certificate from the client. This > causes our server to think the client isn't validated. The only way we > seem to be able to fix this is to re-

RE: Certificate Problem :)

2002-04-22 Thread Andrew T. Finnell
-Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf Of Michal Bachorik > Sent: Monday, April 22, 2002 12:08 PM > To: Openssl ([EMAIL PROTECTED]) > Subject: Re: Certificate Problem :) > > > On Mon, 22 Apr 2002, Andrew Finnell wro

Certificate Problem / get_peer_certificate

2002-04-22 Thread Andrew T. Finnell
I am reposting this with a different account. Hopefully my pervious email didn't get sent to a lot of people. I have no control over HTML being put in my other account's email as the Exchange server does this automatically. Sorry. Dear fellow developers, I am experiencing some problems w

Re: Certificate Problem :)

2002-04-22 Thread Michal Bachorik
On Mon, 22 Apr 2002, Andrew Finnell wrote: > Dear fellow developers, > > I am experiencing some problems with a product we released. We rely > on a public/private key architecture. The client connects to our server and > we check to see if the certificate the client had was signed by us. I

Certificate Problem :)

2002-04-22 Thread Andrew Finnell
Title: Certificate Problem :) Dear fellow developers,     I am experiencing some problems with a product we released. We rely on a public/private key architecture. The client connects to our server and we check to see if the certificate the client had was signed by us. I do this by

Re: certificate problem? key size problem? help!!!

2002-01-20 Thread Lutz Jaenicke
On Fri, Jan 18, 2002 at 12:08:36PM -0500, Mark Lidd wrote: > A transcript is the following: > > bash-2.05$ openssl s_client -connect autonet.va.autometric.com:443 -ssl2 ... > Ciphers common between both SSL endpoints: > RC4-MD5 EXP-RC4-MD5 RC2-CBC-MD5 > EXP-RC2-CBC-MD5 DES-CBC-MD5

certificate problem? key size problem? help!!!

2002-01-20 Thread Mark Lidd
I am trying to generate a slient program will SSLeary and openssl. I seem to be able to connect to the server and send the authorization (basic is required) with problems but the certificate is never trusted, nor can I get the index html page. Instead I get insufficient key size html document.

Re: certificate problem

2001-11-30 Thread Soo Hom
Thanks for the advice. I was able to get an alternate /dev/urandom package working. Soo On Wed, 28 Nov 2001, Lutz Jaenicke wrote: > On Wed, Nov 28, 2001 at 08:47:13AM +0100, [EMAIL PROTECTED] wrote: > > Solaris does not support the device /dev/urandom which is necessary to seed > > the PRNG

RE: certificate problem

2001-11-28 Thread Andrew Finnell
Title: RE: certificate problem     Lutz,         Well sometimes installing additional software is not acceptable as was in my case. Do you have any other suggesstions for people like me? We ship a product that uses OpenSSL and we don't want to install 3rd party apps. Whil

Re: certificate problem

2001-11-28 Thread Lutz Jaenicke
On Wed, Nov 28, 2001 at 08:47:13AM +0100, [EMAIL PROTECTED] wrote: > Solaris does not support the device /dev/urandom which is necessary to seed > the PRNG by default. > You can either install a package which emulate /dev/urandom or seed the > PRNG > manually by the following commands : > >un

Re: certificate problem

2001-11-27 Thread Guido . Frohn
sers@o Subject: certificate problem pens

Certificate Problem with Sendmail

2001-09-27 Thread David . Smith
Folks, I'm evaluating the use of Sendmail with TLS for a client. I'm using Sendmail 8.11.6 and openssl 0.9.6b, running under Solaris 2.6 I've created a CA, and a server certificate, apparently successfully. When I try and start Sendmail using these, though, I get the following errors in the log

Re: Is this a certificate problem?

2001-01-26 Thread Greg Stark
] _ - Original Message - From: "Terry Bird" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 9:10 PM Subject: Is this a certificate problem? > > > Hi, > > Im new to SSL and Im having trouble with RC4-128

Is this a certificate problem?

2001-01-25 Thread Terry Bird
larm_type(s->verify_result); SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERTIFICATE_VERIFY_FAILED); goto f_err; } This code is in the function ssl3_get_server_certificate(), in the file s3_clnt.c. So, does this look like a certificate problem? Thanks for any

Nescape certificate Problem

2000-09-28 Thread Peter Liem
Hi, I have a question on the Nescape certificate. I've signed the SPKI request from Netscape and then I put the signed certificate back to the client browser.However, I found that there is a problem in verifying this certificate in Netscape browser. When I click "Verify" button in Netsca

Re: Importing Certificate Problem.

2000-08-28 Thread Vimalan.G
Thanks It's working fine "[EMAIL PROTECTED]" wrote: > I don't know what CA.pl -pkcs12 does nor what it does expect. Anyway, if > you simply need to create a PKCS12 file to import in netscape you need > at least the file containing the private key (say for example > newkey.pem) and the one with yo

Re: Importing Certificate Problem.

2000-08-28 Thread [EMAIL PROTECTED]
I don't know what CA.pl -pkcs12 does nor what it does expect. Anyway, if you simply need to create a PKCS12 file to import in netscape you need at least the file containing the private key (say for example newkey.pem) and the one with your certificate (say newcert.pem). If you also have your C

using user certificate problem

2000-02-28 Thread Osvaldo Brito
Hi, I'm configuring a apache mod_ssl web server. I've a user.p12 file imported into the netscape browser. (I've made the user.p12 with openssl pkcs12 -export -in user.crt -name "My user certificate" -out user.p12 -clcerts -info -des3 -inkey user.key). When i try to connect to the server i get er

making a server certificate problem

2000-02-25 Thread Osvaldo Brito
Hi, I want to generate a server certificate. For that have to sign my server.csr file with my self signed CA. I used this: openssl ca -config openssl.cnf -md md5 -keyfile ca.key -cert ca.crt -in server.csr -out mycert.crt and i've got this error message: wrong number of fields on line 1 (lo

Client certificate-problem

1999-12-15 Thread P.K.B. Hari Gopal
Hi, I have created a client certificate with my CA using openssl as openssl ca -in client.csr Then converted it into DER encoded format and trying to import it into browser. But it is not listing the certificate in any catagory of certificates. Even it is not listing it in certificates list when I

trusted certificate problem

1999-12-12 Thread stone_yang
Hi, I'm making a PKCS12 certificate with open-ssl and import it in my netscape as. But when I try to send a signed mail with my certificate, I encounter a problem message such as: The certificate issuer for this server has been marked as not trusted by the user. NetScape refuses to connect t

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: certificate problem :-( please help

1999-07-19 Thread Orion T. Robillard
I just had the same problem today. I fixed it but I dont know exactly what I did that made it work. I checked the hostname -f and it gave me an alias at first, try hostname -vf and lookfor h_name=`...'. Even if your using a vhost you should use your regular host name in the csr. Good Luck! Barry

Client Certificate Problem

1999-05-27 Thread Chris H. Jensen
Running Linux 2.0.36 Apache 1.3.6 Openssl 0.9.3 Mod_ssl 2.3.0  My server is up and running and seems to work fine in secure mode without a clientcert.  But every time I create and install a client cert. in netscape 4.06 I getrecieved bad data from server messaget