sifcoin-hash - bindings for Proof of Work hash function used by Sifcoin

Python bindings for Sifcoin hashing. 

Typical usage::

    def block_header_hash(chain, header):
        return sifcoin_hash.getPoWHash(header)


Module installation
===================

Install module with::

    $ pip install sifcoin-hash

or::

    $ pip install git+https://github.com/gjhiggins/sifcoin-hash --allow-external

or::

    $ git clone https://github.com/gjhiggins/sifcoin-hash
    $ cd sifcoin-hash
    $ python setup.py install

