Re: simple https client application

2013-09-18 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

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 http://sea

Re: simple https client application

2013-09-18 Thread Roberto Spadim
t; From: "James Marshall" > 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 cal

Re: simple https client application

2013-09-18 Thread Lou Picciano
ptember 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 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 http://search.cpan.org/~mikem/Net-SSLeay-1.55/lib/Net/SSLea

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 po