Vinni a écrit :
Hello
i am using SSL_CTX_load_verify_locations() to load the CA certs.
I have another question that ..
How actually the SSL_accept get the client certificate ?? Is its internal
function also fetch the
CA certificate of the client or it check the CA list of its own that is set
Hello
i am using SSL_CTX_load_verify_locations() to load the CA certs.
I have another question that ..
How actually the SSL_accept get the client certificate ?? Is its internal
function also fetch the
CA certificate of the client or it check the CA list of its own that is set
by the above functi
vinni rathore a écrit :
>
> hi,
>
> i am stuck with the error "Unable to get local issuer certificate" and
> then "SSL3_GET_CLIENT_CERTIFICATE: peer certificate not return".
>
> I have created my own certificates using Openssl.exe . I have created
> CACert.pem which is self signed CA certificate
Hi vinni,
As a hint i will reformulate how i understand your problem
The server cannot accept the client certificate because it cannot check
that the certificate have been issued by a trusted CA.
This arise because the CA certificate is not available so the questios are
1) Is the CA ce
Yes, I have initialized the SSL library,
SSL * init_context(char *keyfile, char *password) {
.
/* Initialize , load libraray and error strings */
/* OpenSSL_add_all_algorithms(); */
SSL_library_init();
SSL_load_error_strings();
..
}
Hello,
> I am new to OpenSSL.
Hello,
> I am new to OpenSSL. I am reading documents on SSL and started
practising.
> As an assignment, I am writing a simple client server program (to
support cross
> platform, for windows and linux).
> In my server code, sockets are created for UDP and TLS for SIP.
> My code works for window