We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43d2b2 commit 5ac8b2fCopy full SHA for 5ac8b2f
hashes/verushash.py
@@ -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
9
import hashlib
10
11
def verushash(data):
0 commit comments