Re: openssl 0.9.4

2009-01-19 Thread vinni rathore
Yes it supports multithread applications. On Mon, Jan 19, 2009 at 7:40 AM, Leo, Liangyou Wang (liangwan) < liang...@cisco.com> wrote: > Hi All, > > Could you give me quick reply that whether openssl 0.9.4 could support > multi-threads application? > > > > Thanks and regards, > > Leo > -- reg

Re: Client verify failing - continued

2008-11-25 Thread vinni rathore
yes its true that server does not request certificate automatically everything is done by using APIs .. so nothing to say on it.. here the problem is not of server but from client side as the server is not able to get the client certificate.. On Tue, Nov 25, 2008 at 3:21 PM, Michael Simms <[EMA

Re: Client verify failing - continued

2008-11-25 Thread vinni rathore
hi, This Error tells that your server is demanding a certificate from client side that means authentication needed.. but client is not sending any certificate.. so please check your code where your client is sending certificate to Server.. hope u'll get something from there.. On Tue, Nov 25, 20

Re: help

2008-11-17 Thread vinni rathore
there is some reading problem could u please send me the flow of API's u r using for the ur client and server... On Mon, Nov 17, 2008 at 4:34 PM, naveen.bn <[EMAIL PROTECTED]>wrote: > vinni rathore wrote: > > What is ur failure error messages can u please send them... > >

Re: help

2008-11-14 Thread vinni rathore
What is ur failure error messages can u please send them... On Fri, Nov 14, 2008 at 10:21 PM, Michael Simms <[EMAIL PROTECTED]>wrote: > > I am a new to SSL. I have installed openssl and using the SSL APIs , I > have > > written a small client - server > > program in C, but SSL_connect fails fro

Re: Strange error for multiple SSL sessions

2008-09-24 Thread vinni rathore
Hello, I also created the same kind of Server that handle the different clients but the only difference that i have different threads for reading and writing as my application needed... May be u need to check SSL structure for both read and write for different connections. There is no problem in

Re: Problem Related to Peer cetificate verification.

2008-09-24 Thread vinni rathore
Hello Ajeet, I think .PEM format is OK. As i also used the same format for my application and used the same API's as u mentioned and everything is fine.. Also u need to check your system date.. is that ok?? On Wed, Sep 24, 2008 at 9:08 PM, Lutz Jaenicke <[EMAIL PROTECTED]> wrote: > Ajeet kumar

Re: .der to .crt file conversion

2008-09-24 Thread vinni rathore
hi.. you can simply rename the .pem format to .crt . It will work fine.. On Wed, Sep 24, 2008 at 3:12 PM, Ajeet kumar.S <[EMAIL PROTECTED]> wrote: > Hi All, > >Can we convert .der to .crt file? Please suggest me. How we can > convert it using open ssl? > > > > > > Thank you. > > Regar

Re: How to convert .der file to .pem

2008-09-22 Thread vinni rathore
Hi, Try to use this openssl x509 –in input.crt –inform DER –out output.crt –outform PEM If u still get the error then tell the exact error u r getting during conversion. On Mon, Sep 22, 2008 at 5:54 PM, Ajeet kumar.S <[EMAIL PROTECTED]> wrote: > Hi all; >Thank you Luciano Quartarone for yo

Re: Multithreaded SSL server...!!!

2008-09-09 Thread vinni rathore
Hi all... I would like to thanx.. to all the users fot he openssl.. that i got success in multi-threaded server with SSL APIs... gr8 ... Once again thnx a lot.. On Wed, Sep 3, 2008 at 4:27 PM, Ger Hobbelt <[EMAIL PROTECTED]> wrote: > Please mind the single line where Darryl mentioned > renegotia

Re: Multithreaded SSL server...!!!

2008-08-31 Thread vinni rathore
Hi , Actually my platform is RedHat Linux and compiler is GCC 3.4. I am creating a VPN Server here that also include work with TUN/TAP driver. And thats why i have 2 separate threads for reading and writing. By-the-way i am not creating threads per client, 2 threads(read/write) for every client.

Re: Multithreaded SSL server...!!!

2008-08-29 Thread vinni rathore
he output queue across each connection and read information from >> the connection into the input queue. >> >> -Kyle H >> >> On Fri, Aug 29, 2008 at 1:39 AM, vinni rathore >> <[EMAIL PROTECTED]> wrote: >> > Hello everyone, >> > >> &g

Multithreaded SSL server...!!!

2008-08-29 Thread vinni rathore
Hello everyone, I am still facing the same segmentation error in multithreaded server using openssl APIs. Everything is correct for single client ... but when multiple clients are used it gives segmentation problem In my application there are different threads for read and write. Could anyone ple

Server handling Multiple clients....!!!!

2008-08-20 Thread vinni rathore
Hello everyone, I am working with a VPN server and using openssl APIs to handle SSL on Linux machine. My server work fine with single client but it shows the segmentation fault when i test it with multiple clients. I have different threads in my server handling different functionalities. Read and

Re: Problem in SSL configuration

2008-06-30 Thread vinni rathore
hi what do u mean by 'SSL version 3 certificated'? if u r looking for ssl certificates then u need to use the openssl.exe for certs. here is the link: http://www.madboa.com/geek/openssl/#cert On Mon, Jun 30, 2008 at 10:23 AM, rajatg <[EMAIL PROTE

Re: linking errors on linux........!

2008-06-16 Thread vinni rathore
regards, Vinni On Mon, Jun 16, 2008 at 5:19 PM, vinni rathore <[EMAIL PROTECTED]> wrote: > Thnx for ur reply Mr. Vijay > > I have a question .. as there are two libraries in case of Windows : > Libeay32.lib and SSLeay32.lib > so the same libraries are for linux or something

Re: linking errors on linux........!

2008-06-16 Thread vinni rathore
, Vinni On Mon, Jun 16, 2008 at 2:25 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote: > Hi, > > Based on what you have shared, I believe you didn't link the library files > required. You should use the -lssl option for this. > i.e. > > root #: gcc sample_file.c -lssl >

linking errors on linux........!

2008-06-16 Thread vinni rathore
hi i m getting undefined symbol for my sample server program that is on linux. my program is using openssl apis. i have installed the openssl 0.9.8g version on the red hat machine everything got sucess but still getting the linking errors. steps that i followed: 1- config 2. make 3. make insta

Re: subjectAltName cert generation confusion...

2008-06-16 Thread vinni rathore
hi i m getting undefined symbol for my sample server program that is on linux. my program is using openssl apis. i have installed the openssl 0.9.8g version on the red hat machine everything got sucess but still getting the linking errors. steps that i followed: 1- config 2. make 3. make insta

RE: SSL_ACCEPT...!!! failure

2008-05-30 Thread Vinni
wrote: > > > > > 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

SSL_ACCEPT...!!! failure

2008-05-29 Thread vinni rathore
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 and then two other certificates one is C