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! | [reply] |
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
| [reply] |
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
| [reply] |
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 | [reply] [d/l] [select] |