Metadata-Version: 2.1
Name: siphashc
Version: 1.3
Summary: Python module (in c) for siphash-2-4
Home-page: https://github.com/WeblateOrg/siphashc
Author: Michal Čihař
Author-email: michal@cihar.com
License: ISC
Project-URL: Issue Tracker, https://github.com/WeblateOrg/siphashc/issues
Project-URL: Source Code, https://github.com/WeblateOrg/siphashc
Project-URL: Twitter, https://twitter.com/WeblateOrg
Description: siphashc
        ========
        
        .. image:: https://travis-ci.com/WeblateOrg/siphashc.svg?branch=master
            :target: https://travis-ci.com/WeblateOrg/siphashc
        
        .. image:: https://img.shields.io/pypi/v/siphashc.svg
            :target: https://pypi.python.org/pypi/siphashc
            :alt: PyPI package
        
        Installation
        ~~~~~~~~~~~~
        
        Install using pip:
        
        .. code-block:: sh
        
            pip install siphashc
        
        Sources are available at <https://github.com/WeblateOrg/siphashc>.
        
        Introduction
        ~~~~~~~~~~~~
        
        siphashc is a python c-module for
        `siphash <https://131002.net/siphash/>`__, based on `floodberry's
        version <https://github.com/floodyberry/siphash>`__.
        
        It was merged from two versions of the module:
        
        -  https://github.com/cactus/siphashc
        -  https://github.com/carlopires/siphashc3
        
        Usage
        ~~~~~
        
        Python 2
        ^^^^^^^^
        
        .. code:: python
        
            >>> from siphashc import siphash
            >>> siphash('sixteencharstrng', 'i need a hash of this')
            10796923698683394048L
        
        Python 3
        ^^^^^^^^
        
        .. code:: python
        
            >>> from siphashc import siphash
            >>> siphash('sixteencharstrng', 'i need a hash of this')
            10796923698683394048
        
        License
        ~~~~~~~
        
        Released under the `ISC
        license <https://choosealicense.com/licenses/isc/>`__. See
        ``LICENSE.md`` file for details.
        
Keywords: siphash siphash-2-4
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: ISC License (ISCL)
Description-Content-Type: text/x-rst
