summaryrefslogtreecommitdiff
path: root/README.rst
blob: 5796b7b4fcfda8244d643c3628eaa631c8de1627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Unpadded Base64
===============

.. image:: https://img.shields.io/pypi/v/unpaddedbase64.svg
    :target: https://pypi.python.org/pypi/unpaddedbase64/
    :alt: Latest Version

.. image:: https://img.shields.io/travis/matrix-org/python-unpaddedbase64.svg
   :target: https://travis-ci.org/matrix-org/python-unpaddedbase64

Encode and decode Base64 without "=" padding.

`RFC 4648`_ specifies that Base64 should be padded to a multiple of 4 bytes
using "=" characters. However this conveys no benefit so many protocols choose
to use Base64 without the "=" padding.

.. _`RFC 4648`: https://tools.ietf.org/html/rfc4648

Installing
----------

.. code:: bash

   pip install unpaddedbase64

Using
-----

.. code:: python

    import unpaddedbase64
    assert (unpaddedbase64.encode_base64(b'\x00')) == u'AA'
    assert (unpaddedbase64.decode_base64(u'AA')) == b'\x00'