• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

eg/H07-Apr-2001-444320

CBCeasy.pmH A D07-Apr-20018.7 KiB35279

ChangesH A D07-Apr-2001778 2718

MANIFESTH A D07-Apr-200189 98

Makefile.PLH A D07-Apr-20011.3 KiB4232

READMEH A D07-Apr-20011.2 KiB6835

test.plH A D07-Apr-200111.9 KiB566400

README

1NAME
2
3Crypt::CBCeasy - Easy things make really easy with Crypt::CBC
4
5
6SYNOPSIS
7
8 use Crypt::CBCeasy;
9
10 IDEA::encipher($my_key, "plain-file", "crypted-file");
11
12 $plain_text = DES::decipher($my_key, \*CRYPTO_FILE);
13
14 $crypted = Blowfish::encipher($my_key, \*PLAIN_SOCKET);
15
16
17ABSTRACT
18
19This module is a helper for Crypt::CBC to make simple and
20usual jobs just one-liners.
21
22The current version of the module is available at CPAN.
23
24See CBCeasy.pm for POD docs.
25
26
27INSTALLATION
28
29As this is just a plain module no special installation is needed. Put it
30into the /Crypt subdirectory somewhere in your @INC. The standard
31
32 Makefile.PL
33 make
34 make test
35 make install
36
37installation procedure is provided. In addition
38
39 make html
40
41will produce the HTML-docs.
42
43This module requires
44
45Crypt::CBC at least 1.20 by Lincoln Stein, lstein@cshl.org
46
47one or more of
48
49Crypt::IDEA, Crypt::DES, Crypt::Blowfish, Crypt::Blowfish_PP,
50Crypt::Twofish2, Crypt::DES_PP, Crypt::Rijndael or other
51Crypt::CBC compatible modules.
52
53
54AUTHOR
55
56Mike Blazer, blazer@mail.nevalink.ru
57
58http://www.dux.ru/guest/fno/perl/
59
60
61COPYRIGHT
62
63Copyright (C) 2000-2001 Mike Blazer.
64
65This package is free software; you can redistribute it and/or
66modify it under the same terms as Perl itself.
67
68