NAME
Crypt::CBCeasy - Easy things make really easy with Crypt::CBC
SYNOPSIS
use Crypt::CBCeasy;
IDEA::encipher($my_key, "plain-file", "crypted-file");
$plain_text = DES::decipher($my_key, \*CRYPTO_FILE);
$crypted = Blowfish::encipher($my_key, \*PLAIN_SOCKET);
ABSTRACT
This module is a helper for Crypt::CBC to make simple and
usual jobs just one-liners.
The current version of the module is available at CPAN.
See CBCeasy.pm for POD docs.
INSTALLATION
As this is just a plain module no special installation is needed. Put it
into the /Crypt subdirectory somewhere in your @INC. The standard
Makefile.PL
make
make test
make install
installation procedure is provided. In addition
make html
will produce the HTML-docs.
This module requires
Crypt::CBC at least 1.20 by Lincoln Stein,
[email protected]
one or more of
Crypt::IDEA, Crypt::DES, Crypt::Blowfish, Crypt::Blowfish_PP,
Crypt::Twofish2, Crypt::DES_PP or other Crypt::CBC compatible modules.
AUTHOR
Mike Blazer,
[email protected]
http://www.dux.ru/guest/fno/perl/
COPYRIGHT
Copyright (C) 2000-2001 Mike Blazer.
This package is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.