Re: Help reagarding socket calls in SSL needed

2008-09-26 Thread prashanth s joshi
Hi David thanks very much for the reply. Your response has actually provided me the insight in to the solution that I was looking for. I actually wnted to replace the socket calls with the bios abstracted on memory buffers. Regards, Prashanth. On Fri, Sep 26, 2008 at 8:34 PM, David Schwartz <[EMA

Re: Help reagarding socket calls in SSL needed

2008-09-26 Thread prashanth s joshi
thanks vinay for the reply. I actually need to work on replacing the sockets with the bios abstracted over the memory buffers. On Fri, Sep 26, 2008 at 5:23 PM, vne <[EMAIL PROTECTED]> wrote: > > > The tcp socket calls are accessed by macros defined in file e_os.h. > Is it all what you want to kn

Re: Problem Related to Peer cetificate verification.

2008-09-26 Thread Ian jonhson
Simply, you can verify your certificate by: $ openssl verify -CAfile /path/to/root_cert your_cert If you want to implement your verification codes, you can get the detail form openssl.c. On Wed, Sep 24, 2008 at 7:17 PM, Ajeet kumar.S <[EMAIL PROTECTED]> wrote: > Dear All, > > I wa

Re: Linux kernel engine support an openssl

2008-09-26 Thread Ian jonhson
why and how? On Thu, Sep 25, 2008 at 2:35 AM, F. <[EMAIL PROTECTED]> wrote: > Hello, > Program that want use Engine should enable it. > It's posible enable engine for all program without the program request > without patch? > > Any plan to use linux kernel engine support in openssl software? > >

Re: [OpenSSL] LIBEAY32.dll access violation

2008-09-26 Thread Kyle Hamilton
Please read the entire FAQ at http://www.openssl.org/faq.html. There are several reasons why this may be the case, and most of them relate specifically to how Microsoft set up their compilation/linking environment. -Kyle H On Fri, Sep 26, 2008 at 3:40 PM, Shankar Ganesh <[EMAIL PROTECTED]> wrote

[OpenSSL] LIBEAY32.dll access violation

2008-09-26 Thread Shankar Ganesh
Hi , I am using pre-built LIBEAY32.dll from openssl-0.9.8i version and i built my application with VC++ 2006 . But i am getting access violation error when LIBEAY32.dll access NTDLL.dll during execution of my application . Can you help me

OCSP_basic_verify:root ca not trusted:ocsp_vfy.c:148

2008-09-26 Thread Nada Essaouini
Hello, I throw ocsp responder : openssl ocsp -index ca/index.txt -CA ca/ca.pem -rsigner ocsp.pem -rkey ocsp.key -url http://www.ocspresponder.com -port 9080 I want to verify a certificat validity Test.pem delivred by a certificat ca.pem and i want to verify a response of responder by an othe

Re: DTLS clue requested.

2008-09-26 Thread David Woodhouse
On Tue, 2008-09-23 at 23:12 -0700, nagendra modadugu wrote: > Hi David, unfortunately I've been out of touch with the developments > to DTLS for some time. I forwarded your message to Eric Rescorla > who worked with Cisco to get their implementation working. Thanks. > I suspect that Cisco has pr

Re: Strange error for multiple SSL sessions

2008-09-26 Thread qunying
When error occurs, sometimes I get error:140F3042:SSL routines:SSL_U NDEFINED_CONST_FUNCTION:called a function you should not call. qunying wrote: Hi, Thanks for your reply. Here is my program flow: SSL_CTX_new(SSLv23_server_method()); // setting veraires options and certificates SSL_OP_ALL|SS

Re: Strange error for multiple SSL sessions

2008-09-26 Thread qunying
When error occurs, sometimes I get error:140F3042:SSL routines:SSL_U NDEFINED_CONST_FUNCTION:called a function you should not call. qunying wrote: Hi, Thanks for your reply. Here is my program flow: SSL_CTX_new(SSLv23_server_method()); // setting veraires options and certificates SSL_OP_ALL|SS

Re: FIPS-capable curl: Solaris 9 - fingerprint does not match

2008-09-26 Thread Dr. Stephen Henson
On Thu, Sep 25, 2008, joshi chandran wrote: > I am using openssl 0.9.7m . Yes,I have the used the OPENSSL_FIPS=1 when > calling the command . i am attaching the testscript which i am using. > please help me > [snipped] Your config files have default_md = md5 in several places. Change those to s

Re: Mixmaster needs libcrypto.a which is not there

2008-09-26 Thread gabrix
I never compiled mixmaster but as far as i know once you opened the mixmaster.tar.gz , when you launch the .Install script it will ask you if you have openssl , even if you have it say "NO" anyway it will provide you of an another openssl pack that will be installed where mixmaster needs want it to

RE: Help reagarding socket calls in SSL needed

2008-09-26 Thread David Schwartz
> Hi SSL experts, > I am using the s_client.c and the s_server.c for my ssl client and > server. I need to find the socket calls such as send and recv. ie > SSL_write( ), SSL_read( ), bio_read( ), bio( ) write etc will > finally have to make a call to the socket calls such as send and > recv as

Problem with compilation

2008-09-26 Thread Gisela Pavon
I have installed OpenSSL 9.7.g on a HP-UX B.11.0 A 9000/800 server (with Ansi C). I know it's not the newest version of OpenSSL but I have installed this version in a similar server 2 years ago and it worked fine... The installation went ok, but I try to compile a simple C program (where I gener

Re: Help reagarding socket calls in SSL needed

2008-09-26 Thread vne
The tcp socket calls are accessed by macros defined in file e_os.h. Is it all what you want to know? prashanth s joshi wrote: > > Hi SSL experts, > I am using the s_client.c and the s_server.c for my ssl client and server. > I > need to find the socket calls such as send and recv. ie SSL_writ

Re: CSR has invalid signature

2008-09-26 Thread Rob Stradling
Hi Jacob. Yes, you can generate a CSR from any computer. :-) Please tell us the exact OpenSSL commands you used to generate the CSR and keypair. I cannot reproduce the problem. Thanks. On Friday 26 September 2008 01:24:59 JacobLovell wrote: > Hi Rob - thankyou for the reply! > > When I do th

Help reagarding socket calls in SSL needed

2008-09-26 Thread prashanth s joshi
Hi SSL experts, I am using the s_client.c and the s_server.c for my ssl client and server. I need to find the socket calls such as send and recv. ie SSL_write( ), SSL_read( ), bio_read( ), bio( ) write etc will finally have to make a call to the socket calls such as send and recv as I guess. I nee

OpenSSL Certificate Verification Error

2008-09-26 Thread Sugandh Rakha
Hi People, I am using a trusted-roots file with Digital Certificates for various servers. But I am unable to connect to one of these servers. The error I see is: X509_V_ERR_CERT_UNTRUSTED Any ideas on what could be wrong? regards, Sugandh

Re: CSR has invalid signature

2008-09-26 Thread JacobLovell
Hi Rob - thankyou for the reply! When I do the same I get this: (it says verify failure) but nothing. Btw not sure if this helps but i am using the correct private key from my knowledge. I have followed the directions word by word from the comodo site. Sorry for my ignorance, but can I just gener