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

..03-May-2022-

lib/Encode/Base32/H03-May-2022-25483

t/H26-Oct-2011-14485

ChangesH A D26-Oct-2011821 2923

LICENSEH A D26-Oct-201117.9 KiB380292

MANIFESTH A D26-Oct-2011194 1615

META.jsonH A D26-Oct-2011969 4038

META.ymlH A D26-Oct-2011547 2120

Makefile.PLH A D26-Oct-20111 KiB5338

READMEH A D26-Oct-2011914 3425

SIGNATUREH A D26-Oct-20111.5 KiB3831

dist.iniH A D26-Oct-2011570 3624

README

1NAME
2    Encode::Base32::Crockford - encode/decode numbers using Douglas Crockford's Base32 Encoding
3
4INSTALLATION
5    To install this module, run the following commands:
6
7        perl Makefile.PL
8        make
9        make test
10        make install
11
12DESCRIPTION
13    Douglas Crockford describes a *Base32 Encoding* at
14    <http://www.crockford.com/wrmg/base32.html>. He says: "[Base32 Encoding
15    is] a 32-symbol notation for expressing numbers in a form that can be
16    conveniently and accurately transmitted between humans and computer
17    systems."
18
19    This module provides methods to convert numbers to and from that
20    notation.
21
22METHODS
23    See module perldoc.
24
25AUTHOR
26    Graham Barr <gbarr@cpan.org>
27
28CREDITS
29    The original module was written by Earle Martin <hex@cpan.org>
30
31COPYRIGHT
32   This code is free software; you can redistribute it and/or modify it under
33   the same terms as Perl itself.
34