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

..03-May-2022-

Caesar.pmH A D19-May-20021.4 KiB6833

ChangesH A D19-May-2002159 74

MANIFESTH A D19-May-200254 76

Makefile.PLH A D19-May-2002484 129

READMEH A D19-May-2002591 2920

test.plH A D19-May-2002703 217

README

1NAME
2    Crypt::Caesar - Decrypt rot-N strings
3
4INSTALLATION
5
6    To install this module type the following:
7
8        perl Makefile.PL
9        make
10        make test
11        make install
12
13SYNOPSIS
14        use Crypt::Caesar;
15        print caesar("Vn tjp xvi nzz, do rjmfn.\n");
16
17DESCRIPTION
18    This module is based on the caesar program from the bsdgames package,
19    made by Stan King and John Eldridge, based on the algorithm suggested by
20    Bob Morris.
21
22  "caesar"
23    This is the only function this package provides. It is exported by
24    default and prototyped ($).
25
26AUTHOR
27    Juerd
28
29