in reply to SSL challenge

I believe what you are looking for is the Crypt::SSLeay
by installing it, you automagically get HTTPS for all of the LWP :)
Cheshire Cat

Replies are listed 'Best First'.
Re: Re: SSL challenge
by stix (Novice) on Dec 18, 2001 at 21:44 UTC
    So if I can install Crypt::SSLeay, what would I need to do to make my current scripts use it?
      Just use proper URIs in your scripts. That is instead of 'http://something' use 'https://something'. That's all.

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

      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?