RE: simple https server using openssl

2013-05-19 Thread Saurabh Pandya
02:31 To: openssl-users@openssl.org Subject: RE: simple https server using openssl The s_server program reads stdin and sends is to the client; it reads from the client and sends it to stdout. It doesn’t implement any protocol. But you can use that code as a basis for your homework J

Re: simple https server using openssl

2013-05-18 Thread Indtiny s
Hi Dave, I do not need to handle all of HTTP stuffs , In my requirement I would be having maximum of 3 clients which always perform HTTP Post operation only . Where do I need to look in s_server code to start on ..? --Indra

Re: simple https server using openssl

2013-05-18 Thread James Marshall
Not clear if you need to learn HTTP, but a quick tutorial is at http://www.jmarshall.com/easy/http/ . It covers the requirements of writing compliant clients and servers. James On Fri, May 17, 2013 at 11:34 PM, Indtiny s indt...@gmail.com wrote: Hi Dave, I do not need to handle all of HTTP

Re: simple https server using openssl

2013-05-18 Thread Indtiny s
Hi, I know about HTTP protocol , but how to use the openssl s_server to receive the HTTP request from other clinet and send the response ,,, it receives the request from the s_client but when I tried same with curl client it didn't work .. So now how to start s_server to receive the request

Re: simple https server using openssl

2013-05-18 Thread Somesh Chakrabarti
Hi Indra, You may want to look at Eric Rescorla's tutorial at http://www.rtfm.com/openssl-examples/part1.pdf Best regards, somesh On Sat, May 18, 2013 at 10:12 AM, Indtiny s indt...@gmail.com wrote: Hi, I know about HTTP protocol , but how to use the openssl s_server to receive the HTTP

RE: simple https server using openssl

2013-05-18 Thread Salz, Rich
The s_server program reads stdin and sends is to the client; it reads from the client and sends it to stdout. It doesn't implement any protocol. But you can use that code as a basis for your homework :) /r$ -- Principal Security Engineer Akamai Technology Cambridge, MA

simple https server using openssl

2013-05-17 Thread Indtiny s
Hi, I need to write a simple https server using openssl , I need to just receive https post from the client and return response 201. is it possible use s_server code given in the openssl source to implement a simple https server . ? pls through some light on how to write a simple https server

Re: simple https server using openssl

2013-05-17 Thread Terrell Larson
like but I'm going to keep that part under copyright for now. Start with the memtools and understand what I am doing. On Fri, May 17, 2013 at 10:34:19AM -0700, Indtiny s wrote: Hi, I need to write a simple https server using openssl , I need to just receive https post from the client

RE: simple https server using openssl

2013-05-17 Thread Dave Thompson
From: owner-openssl-us...@openssl.org On Behalf Of Indtiny s Sent: Friday, 17 May, 2013 13:34 To: openssl-users@openssl.org; openssl-...@openssl.org Answering users only, this is not a dev question. I need to write a simple https server using openssl , I need to just receive https post

Re: https server using openssl

2012-11-06 Thread Indtiny s
Hi, Thanks for detailed information , since I am not very comfortable with c/c++ , it is bit difficulty for me to design and implement a webserver . Is there simple open source webserver (which uses the boost lib and has the option to include my modified openssl libs) for android ndk level

Re: https server using openssl

2012-11-01 Thread Indtiny s
Hi, Thanks for the information , actually I need to write simple webserver for the android (in the ndk level for some requirement) . I have added some new CIPHER suite to the openssl as per our requirement . now I need to write simple webeserver which uses that modified-openssl , hence I planned

Re: https server using openssl

2012-11-01 Thread Ted Byers
On Thu, Nov 1, 2012 at 1:47 PM, Indtiny s indt...@gmail.com wrote: Hi, Thanks for the information , actually I need to write simple webserver for the android (in the ndk level for some requirement) . I have added some new CIPHER suite to the openssl as per our requirement . now I need to

Re: https server using openssl

2012-10-31 Thread Ted Byers
On Wed, Oct 31, 2012 at 12:31 PM, Indtiny s indt...@gmail.com wrote: Hi, Thanks for the suggestion , while browsing about openssl I came across this site http://www.rtfm.com/openssl-examples/ which has code for server which is based on the openssl . Can I use that server code for my

Re: https server using openssl

2012-10-30 Thread Andrey Koltsov
Hi. I think that you should write simple HTTP server first and add SSL support to it afterwards. Best regards, Andrey Koltsov software developer 29.10.2012 20:49, Indtiny s пишет: Hi, I have CCM chiper suite in the openssl and for some other requirement I have write my own simple

RE: https server using openssl

2012-10-30 Thread Charles Mills
Absolutely! Charles -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Andrey Koltsov Sent: Tuesday, October 30, 2012 4:08 AM To: openssl-users@openssl.org Cc: Indtiny s Subject: Re: https server using openssl Hi. I think

https server using openssl

2012-10-29 Thread Indtiny s
Hi, I have CCM chiper suite in the openssl and for some other requirement I have write my own simple webserver... Can somebody help me to develop simple openssl based webserver .. I just need to support the POST operation at my server side i.e , in my requirement , client will post the data to