On 12/02/2019 22:29, Hal Murray wrote:
> Is there a better place for things like this?
>
> Please add X509_verify_cert_error_string to the SEE ALSO section of the man
> page for SSL_get_verify_result
Please raise an issue on github for this sort of thing. Even better create a
Is there a better place for things like this?
Please add X509_verify_cert_error_string to the SEE ALSO section of the man
page for SSL_get_verify_result
Thanks.
--
These are my opinions. I hate spam.
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo
On Fri, Sep 04, 2015 at 09:24:21AM +0200, Gait Boxman wrote:
> I'm occasionally getting code 5 from SSL_get_verify_result when attempting
> to setup an SSL/TLS connection to an MS Exchange server using v1.02a.
Show the relevant code that returns "5". Most frequently &qu
Hi all,
I'm occasionally getting code 5 from SSL_get_verify_result when
attempting to setup an SSL/TLS connection to an MS Exchange server using
v1.02a.
I checked the source code, which shows it's
X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE, but I can't find where that
is c
On Sat, Jan 19, 2013, ask wrote:
>
> Is there is a function in ERR_* that can print the text from code?
>
Not in ERR_* no because the error doesn't come from the ERR library. You can
instead use X509_verify_cert_error_string(err)
Steve.
--
Dr Stephen N. Henson. OpenSSL project core developer.
Thanks,
Is there is a function in ERR_* that can print the text from code?
A
From: Jeffrey Walton
To: as...@yahoo.com
Sent: Thursday, January 17, 2013 8:32 PM
Subject: Re: print result of SSL_get_verify_result
On Thu, Jan 17, 2013 at 9:17 PM, ask
On Thu, Jan 17, 2013 at 9:17 PM, ask wrote:
> How can I print out result string from return code of
> SSL_get_verify_result?
> For example, for my test, I got 18,
> ERR_error_string( return_code) does not yield any thing?
http://www.openssl.org/docs/ssl/SSL_get_verify
How can I print out result string from return code of
SSL_get_verify_result?
For example, for my test, I got 18,
ERR_error_string( return_code) does not yield any thing?
A
,
> CERT_UNTRUSTED is correctly reported by SSL_get_verify_result().
>
> Log:
> OpenSSL 0.9.8r 8 Feb 2011
> compiler: cc -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H
> -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks
> -O3 -DOPENSSL_NO_IDEA -D
After some more investigation, the problem seems to happen only with
OpenSSL (v0.9.8r) preinstalled with Mac OS X 10.6.8.
If the test program is linked against *locally* built 0.9.8r,
CERT_UNTRUSTED is correctly reported by SSL_get_verify_result().
Log:
OpenSSL 0.9.8r 8 Feb 2011
compiler: cc
I ran the same test with OpenSSL v0.9.8o on linux. As soon as
verifyCallback is returned 0, connect() fails with the CERT_UNTRUSTED
error from SSL_get_verify_result() as expected. Here's the log:
OpenSSL 0.9.8o 01 Jun 2010
compiler: cc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REEN
SSL_get_verify_results() returns X509_V_OK where I
expects X509_V_ERR_CERT_UNTRUSTED to return. Looking at my log, the
verifyCallback() detected the error, returning 0 to the caller but the
return value from SSL_get_verify_result() did not seem to reflect the
error detected in the verifyCallback
Hello All there,
i have written an SMTP Proxy using opnessl for the Networkcounication. Now
trying to use STATTLS with an SMTP Server, in my case smtp.live.com ( Microsoft
Hotmail )
I Set up my my Truststore Directory using SSL_CTX_load_verify_locations.
SSL_get_verify_result everytime rsults
X509* x509cert = SSL_get_peer_certificate(m_ssl_p);
if (x509cert != NULL)
{
//load cert
if(1 != SSL_CTX_load_verify_locations(m_ctx_p,
"C:\\openssl\\certs\\thawteCp.pem", NULL)) retVal =
GC_SSL_CERT_LOAD_ERROR;
else {
// check cert
long certVerifyResult = SSL_
d cert
if(1 != SSL_CTX_load_verify_locations(m_ctx_p,
"C:\\openssl\\certs\\thawteCp.pem", NULL)) retVal = GC_SSL_CERT_LOAD_ERROR;
else {
// check cert
long certVerifyResult = SSL_get_verify_result(m_ssl_p);
// the only successful return code is X509_V_OK = 0
if((cert
I need some help with SSL_get_verify_result errors.
I use WindowsXP, Visual C++, OpenSll 0.9.8d
this is my example program:
#include
#include
int main(int argc, char *argv[])
{
BIO * bio
On the client side ,
> SSL_get_verify_result(ssl) returns code 18.
> which is :
> 18 X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: self signed
>certificate
>
>
> i have the server certificate on the client side and i am using this function in my
>client code.
>
>
Hi,
I have written a client/server code using openssl.
when i am verifying the server certificate on the
client side and also the client certificate on the server side the
verification fails.
On the client side ,
SSL_get_verify_result(ssl) returns code
18.
which is :
18
18 matches
Mail list logo