Skip to content

Commit 5ac8b2f

Browse files
authored
Update verushash.py
1 parent b43d2b2 commit 5ac8b2f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

hashes/verushash.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
#Author : Hugo Cheung
2+
3+
"""
4+
This repository contains a Python implementation of the VerusHash algorithm, a unique proof-of-work (PoW) hashing algorithm used by Verus Coin (VRSC).
5+
VerusHash combines SHA-256 and Keccak-256 in a specific sequence to create a secure and ASIC-resistant hashing algorithm.
6+
This implementation is designed to be self-contained, relying only on custom implementations of SHA-256 and Keccak-256, with no external dependencies.
7+
"""
8+
19
import hashlib
210

311
def verushash(data):

0 commit comments

Comments
 (0)