diff options
author | ache <ache@FreeBSD.org> | 1997-06-21 12:00:27 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-06-21 12:00:27 +0000 |
commit | cec35ac04abbd70fb364a2c33085fd72b324dc3e (patch) | |
tree | 520c8f93fb04df55e3aebc493223144e499e40dd /converters/p5-MIME-Base64/pkg-descr | |
parent | 93ce87f860cc907ebca4034d794aca6fc3524aad (diff) | |
download | FreeBSD-ports-cec35ac04abbd70fb364a2c33085fd72b324dc3e.zip FreeBSD-ports-cec35ac04abbd70fb364a2c33085fd72b324dc3e.tar.gz |
Base64/QP perl module
Diffstat (limited to 'converters/p5-MIME-Base64/pkg-descr')
-rw-r--r-- | converters/p5-MIME-Base64/pkg-descr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/converters/p5-MIME-Base64/pkg-descr b/converters/p5-MIME-Base64/pkg-descr new file mode 100644 index 0000000..7cce302 --- /dev/null +++ b/converters/p5-MIME-Base64/pkg-descr @@ -0,0 +1,20 @@ +This package contains a base64 encoder/decoder and a quoted-printable +encoder/decoder. These encoding methods are specified in RFC 2045 - +MIME (Multipurpose Internet Mail Extensions). + +The base64 encoding is designed to represent arbitrary sequences of +octets in a form that need not be humanly readable. A 65-character +subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits to be +represented per printable character. + +The quoted-printable encoding is intended to represent data that +largely consists of bytes that correspond to printable characters in +the ASCII character set. Non-printable characters are represented by +a triplet consisting of the character "=" followed by two hexadecimal +digits. + +The MIME::Base64 and MIME::QuotedPrint modules used to be part of +libwww-perl package. They are now distributed separately (this +package). The main improvement is that the base64 encoder/decoder is +implemented by XS functions. This makes it about 20 times faster than +the old implementation in perl. |