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

..03-May-2022-

fallback/H03-Mar-2009-113108

t/H03-Mar-2009-145112

ChangesH A D24-Oct-20101.9 KiB5845

GenPerl.plH A D26-Jul-200912 KiB404270

MANIFESTH A D24-Oct-2010151 1413

Makefile.PLH A D31-Oct-20093 KiB11995

PerlCryptLib.pmH A D24-Oct-201013.5 KiB476119

PerlCryptLib.xsH A D31-Oct-201016.1 KiB612470

READMEH A D31-Oct-20101.7 KiB6643

ppport.hH A D03-Mar-200915 KiB563290

typemapH A D03-Mar-200946 43

README

1============================
2PerlCryptLib v.1.11 - README
3============================
4
5
6What is cryptlib?
7-----------------
8
9PerlCryptLib is an interface module to access cryptlib API.
10
11cryptlib (Copyright 1992-2005 Peter Gutmann. All rights reserved.) is a
12powerful encryption and security software toolkit that allows even
13inexperienced crypto-programmers to easily add world-leading encryption and
14authentication services to their software.
15
16For more information about cryptlib features and state-of-the-art, please
17visit its official web-site at:
18
19     http://www.cs.auckland.ac.nz/~pgut001/cryptlib
20
21
22What is PerlCryptLib?
23---------------------
24
25PerlCryptLib is a wrapping extension that allow Perl users to use
26the Open-Source/multi-platform crypto library cryptlib directly from Perl.
27The goal of the module is to give programmers the easyest way to get
28cryptlib functionality; this is done maintaining the exact syntax explained
29in the cryptlib manual.
30
31
32Pre-installation notes
33----------------------
34
35* Versions and platforms supported:
36
37	- cryptlib v.3.2.2 (or later) on unix/linux
38
39
40Installation
41------------
42
43PerlCryptLib need to know the path to cryptlib.h header file for the libcl
44installed in the system.
45You can set (export) environment variable PERL_CRYPT_LIB_HEADER or,
46alternatively, Makefile.PL try itself to search for cryptlib.h in /home
47directory.
48
49Simply do:
50
51	$ tar -xvzf PerlCryptLib-x.xx.tar.gz
52	$ cd PerlCryptLib-x.xx
53	$ perl Makefile.PL
54	$ make
55	$ make test
56	$ sudo make install
57
58Note: to get test-verbosity try 'make test TEST_VERBOSE=1' instead 'make test'.
59
60Post-installation
61-----------------
62
63See MAN documentation for detailed information about PerlCryptLib:
64
65	$ man PerlCryptlib
66