/usr/lib/python3/dist-packages/unpaddedbase64-1.1.0.egg-info/PKG-INFO is in python3-unpaddedbase64 1.1.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 34 35 36 37 38 39 40 41 42 43 44 | Metadata-Version: 1.0
Name: unpaddedbase64
Version: 1.1.0
Summary: Unpadded Base64
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: 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'
Keywords: base64
Platform: UNKNOWN
|