diff options
author | Fred Drake <fdrake@acm.org> | 2000-04-03 20:13:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-04-03 20:13:55 (GMT) |
commit | 38e5d27caee56b6958e0034e342abb48e6100390 (patch) | |
tree | 6a0c853da853123dd2e628e8ec187517250c2530 /Doc/lib/libbase64.tex | |
parent | 659ebfa79e891fc5e2480cd66c157970df57c451 (diff) | |
download | cpython-38e5d27caee56b6958e0034e342abb48e6100390.zip cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.gz cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.bz2 |
Merged changes from the 1.5.2p2 release.
(Very rough.)
Diffstat (limited to 'Doc/lib/libbase64.tex')
-rw-r--r-- | Doc/lib/libbase64.tex | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/Doc/lib/libbase64.tex b/Doc/lib/libbase64.tex index a59332b..bede708 100644 --- a/Doc/lib/libbase64.tex +++ b/Doc/lib/libbase64.tex @@ -10,14 +10,14 @@ This module performs base64 encoding and decoding of arbitrary binary strings into text strings that can be safely emailed or posted. The -encoding scheme is defined in \rfc{1421} (``Privacy Enhancement for -Internet Electronic Mail: Part I: Message Encryption and -Authentication Procedures'', section 4.3.2.4, ``Step 4: Printable -Encoding'') and is used for MIME email and -various other Internet-related applications; it is not the same as the -output produced by the \program{uuencode} program. For example, the -string \code{'www.python.org'} is encoded as the string -\code{'d3d3LnB5dGhvbi5vcmc=\e n'}. +encoding scheme is defined in \rfc{1521} (\emph{MIME +(Multipurpose Internet Mail Extensions) Part One: Mechanisms for +Specifying and Describing the Format of Internet Message Bodies}, +section 5.2, ``Base64 Content-Transfer-Encoding'') and is used for +MIME email and various other Internet-related applications; it is not +the same as the output produced by the \program{uuencode} program. +For example, the string \code{'www.python.org'} is encoded as the +string \code{'d3d3LnB5dGhvbi5vcmc=\e n'}. \begin{funcdesc}{decode}{input, output} @@ -52,4 +52,9 @@ base64 encoded data. \begin{seealso} \seemodule{binascii}{support module containing \ASCII{}-to-binary and binary-to-\ASCII{} conversions} + \seetext{Internet \rfc{1521}, \emph{MIME (Multipurpose Internet + Mail Extensions) Part One: Mechanisms for Specifying and + Describing the Format of Internet Message Bodies}, section + 5.2, ``Base64 Content-Transfer-Encoding,'' provides the + definition of the base64 encoding.} \end{seealso} |