Re: Hard-coded trusted CA-cert

2003-04-03 Thread rajagopalan ramanujam
hi Henson, Thanx for the suggestion. I tried the following Code : unsigned char CA_cert[811]={ 0x30,0x82,0x03,0x27,0x30,0x82.}; /* load our CA cert into the certificate chain */ c = CA_cert; x = d2i_X509(NULL,&c,(long) sizeof(CA_cert)); if( x == NULL ){ goto end; } cert_st

Re: Hard-coded trusted CA-cert

2003-03-26 Thread Dr. Stephen Henson
On Wed, Mar 26, 2003, rajagopalan ramanujam wrote: > hi, > > I have tested the SSL handshake but failing when > verifying server certificate > X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY. I > generated the self signed CA and used the same CAcert > to verify using openssl verify and also using op

Hard-coded trusted CA-cert

2003-03-26 Thread rajagopalan ramanujam
hi, I have tested the SSL handshake but failing when verifying server certificate X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY. I generated the self signed CA and used the same CAcert to verify using openssl verify and also using openssl s_client -verify 1 -CAfile and it seems to be working perfec

Re: Hard-coded trusted CA-cert

2002-03-09 Thread Boguslaw Brandys
From: "Dilkie, Lee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 26, 2002 6:20 PM Subject: RE: Hard-coded trusted CA-cert > Dennis, > > This is what I did. I think I just looked into the SSL_CTX_load_verify_locations() function and copied w