Subject: | Problem with code in Synopsis |
Hi
For years we've campaigned to stamp out indirect object syntax, as you've used in:
my $cipher = new Crypt::Blowfish::Mod $key;
This is much better and more reliably written as:
my $cipher = Crypt::Blowfish::Mod -> new($key);
Thanx!