Subject: | Constructor von Crypt::CBC |
Date: | Fri, 13 Jul 2012 08:47:03 +0200 |
To: | bug-Crypt-Twofish_PP [...] rt.cpan.org |
From: | "oliver.hoos [...] smartmeta.de" <oliver.hoos [...] smartmeta.de> |
Hi Guido,
in deiner Dokumentation zu Crypt-Twofish_PP verwendest du
Crypt::CBC
Du beschreibst die Anwendung:
...
use Crypt::CBC;
$cipher = Crypt::CBC->new (key=> 'my secret key',
cipher=> 'Twofish_PP');
...
Das funktioniert leider nicht (mehr?).
Crypt::CBC beschreibt die Anwendung des Moduls:
use Crypt::CBC;
$cipher = Crypt::CBC->new( -key=> 'my secret key',
-cipher=> 'Blowfish'
);
(Also -key statt key und -cipher statt -cipher.)
Gruß
Oliver