Metadata-Version: 1.1
Name: siphashc3
Version: 3
Summary: Python module (in c) for siphash-2-4
Home-page: http://github.com/carlopires/siphashc3
Author: Carlo Pires
Author-email: carlopires@gmail.com
License: MIT
Description: 
        siphashc3
        =========
        
        python c-module for `siphash`_, based on `floodberry's version`_.
        
        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
        
        
        .. _siphash: https://131002.net/siphash/
        .. _floodberry's version: https://github.com/floodyberry/siphash
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
