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

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

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: How to do encryption ?
by THRAK (Monk) on Mar 29, 2001 at 18:10 UTC
    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