Metadata-Version: 1.2
Name: unpaddedbase64
Version: 2.1.0
Summary: Encode and decode Base64 without "=" padding
Home-page: https://github.com/matrix-org/python-unpaddedbase64
Author: The Matrix.org Foundation C.I.C.
License: UNKNOWN
Description: Unpadded Base64
        ===============
        
        Encode and decode Base64 without "=" padding.
        
        `RFC 4648`_ specifies that Base64 should be padded to a multiple of 4 bytes
        using "=" characters. However many protocols choose to omit the "=" padding.
        
        .. _`RFC 4648`: https://tools.ietf.org/html/rfc4648
        
        Installing
        ----------
        
        .. code:: bash
        
           python3 -m pip install unpaddedbase64
        
        Using
        -----
        
        .. code:: python
        
            import unpaddedbase64
            assert (unpaddedbase64.encode_base64(b'\x00')) == 'AA'
            assert (unpaddedbase64.decode_base64('AA')) == b'\x00'
        
Platform: UNKNOWN
Requires-Python: >=3.6,<4.0
