Here you can download various implementations of the hash function. Feel free to use it to find the best hash!
If you have any comments or improvements, use the telegram group in contacts.
Rust implementation in zip file. You have to compile and run it yourself.
There are three useful parameters:
message
- base text to be hashed. Default to "Bitcoin".threads
- number of threads to be used. Defaults to half of available threads.start
- integer at which to start. Default to 0.Example usage: cargo run --release -- --threads 4 --message Bitcoin
The code has limitations. Mainly, it only considers first 64 bits of the hash for comparison. If you want to process more than that, you will need to adapt it. Also note, that this is not meant as any production code. It might contain bugs.