Python module for Vcash's Proof-of-Work hashing (Whirlpoolx & Blake256 8rounds).
Python2 is required as well as gcc:
$ sudo pip install vcash_hash
Python3 is required as well as gcc:
$ sudo pip3 install vcash_hash
Python2 is required as well as gcc:
$ git clone https://github.com/xCoreDev/python-vcash_hash.git
$ cd python-vcash_hash/
$ sudo python setup.py install
Python3 is required as well as gcc:
$ git clone https://github.com/xCoreDev/python-vcash_hash.git
$ cd python-vcash_hash/
$ sudo python3 setup.py install
After installation, test hash:
$ python test.py
or: $ python3 test.py
- Based on dashdot's module: https://github.com/dashdot/python-x11_hash
- Thx @ocminer / @tpruvot / @alexis78 for their debug tests.