in reply to Re: Re: Re: https on OSX 10.3 crypto failure
in thread https on OSX 10.3 crypto failure

For anyone who runs into the same problem I did.. Loading the below libraries will enable you to load the bottom code.. You'll need LWP also, but that's not shown here. You need to install IO::Socket::SSL and Net::SSLeay. Examples of how to install here <credits to fokat above>.
sudo perl -MCPAN -e shell look Net::SSLeay perl Makefile.PL -t make install
Example test code:
#!/usr/bin/perl use LWP::Simple; my $url ='https://www.paypal.com'; #Notice the s in httpS my $content = get $url; print $content;