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 to use the code which is there in the link(http://www.rtfm.com/openssl-examples/) compiled with new openssl .. so now will it be okay to go with this code ..?
incase if it is not good to use the above approach , then is boost library available for android to use the Mr.Ted approach ..? Rgds Indra On Wed, Oct 31, 2012 at 1:20 PM, Ted Byers <r.ted.by...@gmail.com> wrote: > 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 simple webserver application ..? > > > > Rgds > > Indra > > I don't know how or if Boost's asio library interacts with openssl, > but if you want to develop your own server, you probably ought to > begin with Boost's asio library. If I where going to write my own > server, that is what I would do (if I were writing it in C++ rather > than Perl). > > http://www.boost.org/doc/libs/1_51_0/doc/html/boost_asio.html > > The site you referenced provides an example that is over a decade old. > > The link I provide above it this year, with current examples for both > http servers and clients with and without using SSL. Being a Boost > C++ library, it provides a solid base on which to build. The license > basically lets you use all that code for whatever purpose you wish. > And, I am sure, once yu have studied it, and openssl, you'll be able > to extend it to use openssl if it does not presently use it, to add > capabilities that openssl provides that are not presently available in > asio (provided you have a good grasp of C++ templates and > inheritance). > > Cheers > > Ted > ______________________________________________________________________ > OpenSSL Project http://www.openssl.org > User Support Mailing List openssl-users@openssl.org > Automated List Manager majord...@openssl.org >