Metadata-Version: 2.1
Name: tigerhash
Version: 0.1.1
Summary: Implementation of tiger hash in C++ with Python API. 
Home-page: https://github.com/Badcat330/TigerHash
Author: Alex Glushko
Author-email: aglushko@hse.ru
License: UNKNOWN
Description: # TigerHash [![PyPI version](https://pypi.org/project/tigerhash/)](https://pypi.org/project/tigerhash/) [![test](https://github.com/Badcat330/TigerHash/actions/workflows/test.yml/badge.svg)](https://github.com/Badcat330/TigerHash/actions/workflows/test.yml)
        
        Implementation of tiger hash in C++ with Python API. 
        The basic API matches that of Python's standard [`hashlib`](https://docs.python.org/3/library/hashlib.html) module. 
        
        ## Creators
        
        The algorithm was created by [Ross Anderson and Eli Biham](https://www.cl.cam.ac.uk/~rja14/Papers/tiger.pdf). 
        It was designed to be a fast, secure hash function which was created for being faster then RIPE-MD, MD5, SHA, SHA1 and Snefru-8 on 64-bit processors.
        
        ## Installation
        
        ```
        pip install tigerhash
        ```
        
        As usual with Pip, you might need to use `sudo` or the `--user` flag
        with the command above, depending on how you installed Python on your
        system.
Platform: UNKNOWN
Classifier: Programming Language :: Cython
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Requires-Python: >=3.9
Description-Content-Type: text/markdown
