Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Re: Re: https on OSX 10.3 crypto failure

by fokat (Deacon)
on Jan 02, 2004 at 13:39 UTC ( [id://318311]=note: print w/replies, xml ) Need Help??


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

That worked!!

I'm glad it worked for you. I see that your install is looking for OpenSSL under /usr/local/lib. Perhaps you could succeed by telling the installer to look under /usr/lib instead.

The look command from the CPAN module, allows you to manually look into a distribution. It is useful for complex installations. Indeed, I wanted to take a look at Net::SSLeay since I've never installed it and I assumed you followed the standard recipe. 99% of the time, you can issue the more standard install command.

Best regards

-lem, but some call me fokat

  • Comment on Re: Re: Re: https on OSX 10.3 crypto failure

Replies are listed 'Best First'.
redone on new mac
by ecuguru (Monk) on Jan 02, 2004 at 13:43 UTC
    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;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://318311]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-04-18 16:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found