hash-prospector icon indicating copy to clipboard operation
hash-prospector copied to clipboard

[Q] How long is too long when running `prospector`?

Open cmazakas opened this issue 2 years ago • 1 comments

This tool seems quite amazing and we were hoping to use it to divine some hash functions for us but after around 4 hours of runtime with 0 output given:

./prospector -8 -p xrot2,mul

, I was wondering how long is too long?

Also, I am aware that xrot2 is only available from the PR here: https://github.com/skeeto/hash-prospector/pull/13

I'm wondering, is the xrot2 implementation simply faulty? Or is running against the 64 bit space simply too large to realistically test in that timeframe? I also noted the code was only using 1 core as well. Is there an option to parallelize the execution?

cmazakas avatar Jul 13 '22 22:07 cmazakas

The prospector defaults to output only functions with a score below 10. Your pattern alone will not score in a that low range so you might want to add -t 1000.

Logan007 avatar Aug 07 '22 14:08 Logan007