in reply to Re: SSL challenge
in thread SSL challenge

So if I can install Crypt::SSLeay, what would I need to do to make my current scripts use it?

Replies are listed 'Best First'.
Re: Re: Re: SSL challenge
by IlyaM (Parson) on Dec 18, 2001 at 22:01 UTC
    Just use proper URIs in your scripts. That is instead of 'http://something' use 'https://something'. That's all.

    --
    Ilya Martynov (http://martynov.org/)

Re: Re: Re: SSL challenge
by cheshirecat (Sexton) on Dec 18, 2001 at 22:04 UTC
    just change
    $req = HTTP::Request->new(GET=>'http://www.apple.com');
    to
    $req = HTTP::Request->new(GET=>'https://www.apple.com');


    Cheshire Cat
      Do I have to "use" it, or is it done backend?