Net::SSLeay is a perl module that allows you to call Secure Sockets Layer
(SSL) functions of the SSLeay library directly from your perl scripts. It
is useful if you want to program robots that access secure web servers or
if you want to build your own applications over SSL encrypted tunnels. If
you just want to view web pages on https servers, you do not need this -
your web browser already knows to do that.
README - Net::SSLeay Perl module for using OpenSSL
$Id: README 269 2011-03-22 20:52:40Z mikem-guest $
By popular demand...
--------------------
perl -MNet::SSLeay -e '($p)=Net::SSLeay::get_https("www.openssl.org", 443, "/"); print $p'
Prerequisites
-------------
perl-5.6.1
though anything starting from perl5.003 probably works.
OpenSSL-0.9.6j or OpenSSL-0.9.7b
more»
Net::SSLeay(3pm) User Contributed Perl DocumentationNet::SSLeay(3pm)
NAME
Net::SSLeay - Perl extension for using OpenSSL
SYNOPSIS
use Net::SSLeay qw(get_https post_https sslcat make_headers make_form);
($page) = get_https('www.bacus.pt', 443, '/'); # Case 1
($page, $response, %reply_headers)
= get_https('www.bacus.pt', 443, '/
more»
Net::SSLeay::HandUserpContributed Perl DocumNet::SSLeay::Handle(3pm)
NAME
Net::SSLeay::Handle - Perl module that lets SSL (HTTPS)
sockets be handled as standard file handles.
SYNOPSIS
use Net::SSLeay::Handle qw/shutdown/;
my ($host, $port) = ("localhost", 443);
tie(*SSL, "Net::SSLeay::Handle", $host, $port);
print SSL "GET / HTTP/1.0\r\n";
more»