in reply to Re: Re: Re: https on OSX 10.3 crypto failure
in thread https on OSX 10.3 crypto failure
Example test code:sudo perl -MCPAN -e shell look Net::SSLeay perl Makefile.PL -t make install
#!/usr/bin/perl use LWP::Simple; my $url ='https://www.paypal.com'; #Notice the s in httpS my $content = get $url; print $content;
|
|---|