RE: Error 18: self signed certificate

2013-11-20 Thread Mark Currie
@openssl.org Subject: RE: Error 18: self signed certificate From: owner-openssl-users On Behalf Of Mark Currie Sent: Monday, November 18, 2013 03:24 I also managed to get self-signed certs to work like this but does anyone know how to use self-signed certs in a RAM-only environment

Re: Error 18: self signed certificate

2013-11-18 Thread Manoj
Thanks Guys for the help, I got it working by loading the location using API SSL_CTX_load_verify_locations(). The location where I have the certificate available. I have another question related to certification verification itself. Can by any mean, I verify a peer certificate(self signed)

RE: Error 18: self signed certificate

2013-11-18 Thread Mark Currie
: 18 November 2013 10:09 To: openssl-users@openssl.org Subject: Re: Error 18: self signed certificate Thanks Guys for the help, I got it working by loading the location using API SSL_CTX_load_verify_locations(). The location where I have the certificate available. I have another question

RE: Error 18: self signed certificate

2013-11-18 Thread Dave Thompson
To: openssl-users@openssl.org Subject: Re: Error 18: self signed certificate Thanks Guys for the help, I got it working by loading the location using API SSL_CTX_load_verify_locations(). The location where I have the certificate available. I have another question related to certification

Re: Error 18: self signed certificate

2013-11-17 Thread Elluru, Krishna
HI Manoj if you check the documentation, it shows 18 X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: self signed certificatethe passed certificate is self signed and the same certificate cannot be found in the list of trusted certificates. corresponding code can be found in x509_vfy.c, where you

RE: Error 18: self signed certificate

2013-11-16 Thread Dave Thompson
From: owner-openssl-users On Behalf Of Martin Hecht Sent: Friday, November 15, 2013 12:28 Maybe there are some means to add the certificate to trusted certificates, maybe it is sufficient to copy it somewhere, where your openssl looks for trusted certificates (in Linux it is usually

Re: Error 18: self signed certificate

2013-11-15 Thread Martin Hecht
Hi Manoj, I don't know this API, but I believe it complains about the fact that the certificate is self-signed. Maybe there are some means to add the certificate to trusted certificates, maybe it is sufficient to copy it somewhere, where your openssl looks for trusted certificates (in Linux it

Re: Error 18: self signed certificate

2013-11-15 Thread Walter H.
Windows has its own System wide certificate store; look at certmgr.msc keep in mind, that some applications have their own store e.g. Mozilla ThunderBird, Mozilla FireFox and some other can use this system wide certificate store e.g. Adobe Reader/Pro/Std Walter On 15.11.2013 09:57, Manoj