Re: simple https client application

2013-09-19 Thread Indtiny s
Hi James, Since I am trying to do it for some embedded target , I need to develop in c/c++ . Rgds Chethan

simple https client application

2013-09-18 Thread Indtiny s
Hi, I want to use a openssl api and use that as http client . currently I am using the c-curl lib with opebssl to do this . and I am running a Nginx server with openssl to support server funs. I want to remove the curl, and use only openssl to talk to the HTTPS server to do GET or PUT . is it

Re: simple https client application

2013-09-18 Thread James Marshall
Yes, very possible. What language are you using? I use Perl, and there's a CPAN module called Net::SSLeay that provides Perl wrappers for all the OpenSSL functions. That module also includes a simple example client, which you can see at

Re: simple https client application

2013-09-18 Thread Lou Picciano
, September 18, 2013 11:33:04 AM Subject: Re: simple https client application Yes, very possible. What language are you using? I use Perl, and there's a CPAN module called Net::SSLeay that provides Perl wrappers for all the OpenSSL functions. That module also includes a simple example client

Re: simple https client application

2013-09-18 Thread Roberto Spadim
: James Marshall ja...@jmarshall.com To: openssl-users@openssl.org Sent: Wednesday, September 18, 2013 11:33:04 AM Subject: Re: simple https client application Yes, very possible. What language are you using? I use Perl, and there's a CPAN module called Net::SSLeay that provides Perl wrappers

Re: simple https client application

2013-09-18 Thread gamo
El 18/09/13 17:33, James Marshall escribió: Yes, very possible. What language are you using? I use Perl, and there's a CPAN module called Net::SSLeay that provides Perl wrappers for all the OpenSSL functions. That module also includes a simple example client, which you can see at