mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00

svn+ssh://svn.python.org/python/branches/py3k ........ r83561 | georg.brandl | 2010-08-02 22:17:50 +0200 (Mo, 02 Aug 2010) | 1 line #4280: remove outdated "versionchecker" tool. ........ r83563 | georg.brandl | 2010-08-02 22:21:21 +0200 (Mo, 02 Aug 2010) | 1 line #9037: add example how to raise custom exceptions from C code. ........ r83565 | georg.brandl | 2010-08-02 22:27:20 +0200 (Mo, 02 Aug 2010) | 1 line #9111: document that do_help() looks at docstrings. ........ r83566 | georg.brandl | 2010-08-02 22:30:57 +0200 (Mo, 02 Aug 2010) | 1 line #9019: remove false (in 3k) claim about Headers updates. ........ r83569 | georg.brandl | 2010-08-02 22:39:35 +0200 (Mo, 02 Aug 2010) | 1 line #7797: be explicit about bytes-oriented interface of base64 functions. ........ r83571 | georg.brandl | 2010-08-02 22:44:34 +0200 (Mo, 02 Aug 2010) | 1 line Clarify that abs() is not a namespace. ........ r83574 | georg.brandl | 2010-08-02 22:47:56 +0200 (Mo, 02 Aug 2010) | 1 line #6867: epoll.register() returns None. ........ r83575 | georg.brandl | 2010-08-02 22:52:10 +0200 (Mo, 02 Aug 2010) | 1 line #9238: zipfile does handle archive comments. ........ r83580 | georg.brandl | 2010-08-02 23:02:36 +0200 (Mo, 02 Aug 2010) | 1 line #8119: fix copy-paste error. ........ r83584 | georg.brandl | 2010-08-02 23:07:14 +0200 (Mo, 02 Aug 2010) | 1 line #9457: fix documentation links for 3.2. ........ r83599 | georg.brandl | 2010-08-02 23:51:18 +0200 (Mo, 02 Aug 2010) | 1 line #9061: warn that single quotes are never escaped. ........ r83612 | georg.brandl | 2010-08-03 00:59:44 +0200 (Di, 03 Aug 2010) | 1 line Fix unicode literal. ........ r83659 | georg.brandl | 2010-08-03 14:06:29 +0200 (Di, 03 Aug 2010) | 1 line Terminology fix: exceptions are raised, except in generator.throw(). ........ r83977 | georg.brandl | 2010-08-13 17:10:49 +0200 (Fr, 13 Aug 2010) | 1 line Fix copy-paste error. ........ r84015 | georg.brandl | 2010-08-14 17:44:34 +0200 (Sa, 14 Aug 2010) | 1 line Add some maintainers. ........ r84016 | georg.brandl | 2010-08-14 17:46:15 +0200 (Sa, 14 Aug 2010) | 1 line Wording fix. ........ r84017 | georg.brandl | 2010-08-14 17:46:59 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84018 | georg.brandl | 2010-08-14 17:48:49 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84020 | georg.brandl | 2010-08-14 17:57:20 +0200 (Sa, 14 Aug 2010) | 1 line Fix format. ........ r84141 | georg.brandl | 2010-08-17 16:11:59 +0200 (Di, 17 Aug 2010) | 1 line Markup nits. ........
176 lines
6.1 KiB
ReStructuredText
176 lines
6.1 KiB
ReStructuredText
:mod:`base64` --- RFC 3548: Base16, Base32, Base64 Data Encodings
|
|
=================================================================
|
|
|
|
.. module:: base64
|
|
:synopsis: RFC 3548: Base16, Base32, Base64 Data Encodings
|
|
|
|
|
|
.. index::
|
|
pair: base64; encoding
|
|
single: MIME; base64 encoding
|
|
|
|
This module provides data encoding and decoding as specified in :rfc:`3548`.
|
|
This standard defines the Base16, Base32, and Base64 algorithms for encoding and
|
|
decoding arbitrary binary strings into text strings that can be safely sent by
|
|
email, used as parts of URLs, or included as part of an HTTP POST request. The
|
|
encoding algorithm is not the same as the :program:`uuencode` program.
|
|
|
|
There are two interfaces provided by this module. The modern interface supports
|
|
encoding and decoding string objects using all three alphabets. The legacy
|
|
interface provides for encoding and decoding to and from file-like objects as
|
|
well as strings, but only using the Base64 standard alphabet.
|
|
|
|
The modern interface provides:
|
|
|
|
.. function:: b64encode(s, altchars=None)
|
|
|
|
Encode a byte string use Base64.
|
|
|
|
*s* is the string to encode. Optional *altchars* must be a string of at least
|
|
length 2 (additional characters are ignored) which specifies an alternative
|
|
alphabet for the ``+`` and ``/`` characters. This allows an application to e.g.
|
|
generate URL or filesystem safe Base64 strings. The default is ``None``, for
|
|
which the standard Base64 alphabet is used.
|
|
|
|
The encoded byte string is returned.
|
|
|
|
|
|
.. function:: b64decode(s, altchars=None)
|
|
|
|
Decode a Base64 encoded byte string.
|
|
|
|
*s* is the string to decode. Optional *altchars* must be a string of at least
|
|
length 2 (additional characters are ignored) which specifies the alternative
|
|
alphabet used instead of the ``+`` and ``/`` characters.
|
|
|
|
The decoded byte string is returned. A :exc:`TypeError` is raised if *s* were
|
|
incorrectly padded or if there are non-alphabet characters present in the
|
|
string.
|
|
|
|
|
|
.. function:: standard_b64encode(s)
|
|
|
|
Encode byte string *s* using the standard Base64 alphabet.
|
|
|
|
|
|
.. function:: standard_b64decode(s)
|
|
|
|
Decode byte string *s* using the standard Base64 alphabet.
|
|
|
|
|
|
.. function:: urlsafe_b64encode(s)
|
|
|
|
Encode byte string *s* using a URL-safe alphabet, which substitutes ``-`` instead of
|
|
``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet. The result
|
|
can still contain ``=``.
|
|
|
|
|
|
.. function:: urlsafe_b64decode(s)
|
|
|
|
Decode byte string *s* using a URL-safe alphabet, which substitutes ``-`` instead of
|
|
``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet.
|
|
|
|
|
|
.. function:: b32encode(s)
|
|
|
|
Encode a byte string using Base32. *s* is the string to encode. The encoded string
|
|
is returned.
|
|
|
|
|
|
.. function:: b32decode(s, casefold=False, map01=None)
|
|
|
|
Decode a Base32 encoded byte string.
|
|
|
|
*s* is the string to decode. Optional *casefold* is a flag specifying whether a
|
|
lowercase alphabet is acceptable as input. For security purposes, the default
|
|
is ``False``.
|
|
|
|
:rfc:`3548` allows for optional mapping of the digit 0 (zero) to the letter O
|
|
(oh), and for optional mapping of the digit 1 (one) to either the letter I (eye)
|
|
or letter L (el). The optional argument *map01* when not ``None``, specifies
|
|
which letter the digit 1 should be mapped to (when *map01* is not ``None``, the
|
|
digit 0 is always mapped to the letter O). For security purposes the default is
|
|
``None``, so that 0 and 1 are not allowed in the input.
|
|
|
|
The decoded byte string is returned. A :exc:`TypeError` is raised if *s* were
|
|
incorrectly padded or if there are non-alphabet characters present in the
|
|
string.
|
|
|
|
|
|
.. function:: b16encode(s)
|
|
|
|
Encode a byte string using Base16.
|
|
|
|
*s* is the string to encode. The encoded byte string is returned.
|
|
|
|
|
|
.. function:: b16decode(s, casefold=False)
|
|
|
|
Decode a Base16 encoded byte string.
|
|
|
|
*s* is the string to decode. Optional *casefold* is a flag specifying whether a
|
|
lowercase alphabet is acceptable as input. For security purposes, the default
|
|
is ``False``.
|
|
|
|
The decoded byte string is returned. A :exc:`TypeError` is raised if *s* were
|
|
incorrectly padded or if there are non-alphabet characters present in the
|
|
string.
|
|
|
|
|
|
The legacy interface:
|
|
|
|
.. function:: decode(input, output)
|
|
|
|
Decode the contents of the binary *input* file and write the resulting binary
|
|
data to the *output* file. *input* and *output* must be :term:`file objects
|
|
<file object>`. *input* will be read until ``input.read()`` returns an empty
|
|
bytes object.
|
|
|
|
|
|
.. function:: decodebytes(s)
|
|
decodestring(s)
|
|
|
|
Decode the bytestring *s*, which must contain one or more lines of base64
|
|
encoded data, and return a bytestring containing the resulting binary data.
|
|
``decodestring`` is a deprecated alias.
|
|
|
|
|
|
.. function:: encode(input, output)
|
|
|
|
Encode the contents of the binary *input* file and write the resulting base64
|
|
encoded data to the *output* file. *input* and *output* must be :term:`file
|
|
objects <file object>`. *input* will be read until ``input.read()`` returns
|
|
an empty bytes object. :func:`encode` returns the encoded data plus a trailing
|
|
newline character (``b'\n'``).
|
|
|
|
|
|
.. function:: encodebytes(s)
|
|
encodestring(s)
|
|
|
|
Encode the bytestring *s*, which can contain arbitrary binary data, and
|
|
return a bytestring containing one or more lines of base64-encoded data.
|
|
:func:`encodebytes` returns a string containing one or more lines of
|
|
base64-encoded data always including an extra trailing newline (``b'\n'``).
|
|
``encodestring`` is a deprecated alias.
|
|
|
|
|
|
An example usage of the module:
|
|
|
|
>>> import base64
|
|
>>> encoded = base64.b64encode('data to be encoded')
|
|
>>> encoded
|
|
b'ZGF0YSB0byBiZSBlbmNvZGVk'
|
|
>>> data = base64.b64decode(encoded)
|
|
>>> data
|
|
'data to be encoded'
|
|
|
|
|
|
.. seealso::
|
|
|
|
Module :mod:`binascii`
|
|
Support module containing ASCII-to-binary and binary-to-ASCII conversions.
|
|
|
|
:rfc:`1521` - 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.
|
|
|