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

..--

t/03-Oct-2014-670593

Base64.pmD30-Jun-20064.8 KiB17813

Base64.xsD30-Jun-200610.7 KiB454356

ChangesD30-Jun-20068 KiB369184

Makefile.PLD30-Jun-2006376 1815

QuotedPrint.pmD30-Jun-20063.3 KiB11712

READMED30-Jun-20061 KiB2821

README

1This package contains a base64 encoder/decoder and a quoted-printable
2encoder/decoder.  These encoding methods are specified in RFC 2045 -
3MIME (Multipurpose Internet Mail Extensions).
4
5The base64 encoding is designed to represent arbitrary sequences of
6octets in a form that need not be humanly readable. A 65-character
7subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits to be
8represented per printable character.
9
10The quoted-printable encoding is intended to represent data that
11largely consists of bytes that correspond to printable characters in
12the ASCII character set.  Each non-printable character is represented by
13a triplet consisting of the character "=" followed by two hexadecimal
14digits.
15
16In order to install and use this package you will need Perl version
175.6 or better.  Installation as usual:
18
19   perl Makefile.PL
20   make
21   make test
22   make install
23
24Copyright 1995-1999,2001-2004 Gisle Aas <gisle@ActiveState.com>
25
26This library is free software; you can redistribute it and/or
27modify it under the same terms as Perl itself.
28