Metadata-Version: 2.1
Name: planetmint-pymultihash
Version: 0.9.1
Summary: Python implementation of the multihash specification
Home-page: https://github.com/planetmint/pymultihash
Author: Ivan Vilata-i-Balaguer
Author-email: ivan@selidor.net
License: MIT
Keywords: multihash hash digest format ASCII encoding
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Security :: Cryptography
Provides-Extra: sha3
Provides-Extra: blake2
License-File: LICENSE.txt

======================================================
 Python implementation of the multihash specification
======================================================

This is an implementation of the `multihash`_ specification in Python.
The main component in the module is the `Multihash` class, a named tuple that
represents a hash function and a digest created with it, with extended
abilities to work with hashlib-compatible hash functions, verify the integrity
of data, and encode itself to a byte string in the binary format described in
the specification (possibly ASCII-encoded).  The `decode()` function can be
used for the inverse operation, i.e. converting a (possibly ASCII-encoded)
byte string into a `Multihash` object.

.. _multihash: https://github.com/jbenet/multihash

For more information, please see the documentation under the ``docs``
directory and the docstrings in the ``multihash`` package.  Ready-to-read
documentation is also available in https://pymultihash.readthedocs.io/.

This package requires at least Python 3.4.
