in reply to Re: Re: How to do encryption ?
in thread How to do encryption ?

The module that I used above is Crypt::Blowfish_PP, which is a
pure perl version of the Crypt::Blowfish module. Check your use line
to make sure you are using Crypt::Blowfish_PP and not Crypt::Blowfish

TStanley
In the end, there can be only one!

Replies are listed 'Best First'.
Re: Re: Re: Re: How to do encryption ?
by THRAK (Monk) on Mar 23, 2001 at 21:54 UTC
    I'm using "Blowfish_PP".  I did a straight cut and paste then did a "perl -wc tst.pl" to make sure things were fine. That passes, but when I run it I get the error.

    THRAK
Re: Re: Re: Re: How to do encryption ?
by THRAK (Monk) on Mar 23, 2001 at 22:47 UTC
    I'm using "Blowfish_PP".  I did a cut and paste of your example then a syntax check on it which passes. But when I run it I get the new method not found error.

    THRAK
      Found the problem...the code example has a minor error that need to be changed:
      my $bf = Crypt::Blowfish->new($key);
      Should be:
      my $bf = Crypt::Blowfish_PP->new($key);


      -THRAK
      www.polarlava.com