Hashes from clear passwords
#10
(05-23-2024, 08:09 PM)wallacebw Wrote: Haven't had a chance to read through your code yet, but I did something similar in python. (multithreaded, supports $hex[], STDIN or file input, STDOUT or file output, etc.)

https://github.com/wallacebw/hashutil

I benchmarked your python hash_generator.py on my test rig (Ryzen 7 3700X). Great performance with python btw at 3.28m md5 / sec. For comparison, hashgen (written in Go) is just shy of an order of magnitude faster at 30.22m md5 / sec.

Here's a few benchmarks of hashing rockyou to md5:
  1. hashgen (go)
    • Time: 0.498s
    • h/s: 30,228,048
  2. hash_generator (python)
    • Time: 4.369s
    • h/s: 3,282,771
  3. mdxfind
    • Time: 13.046s
    • h/s: 1,153,857
  4. hashcat test.pl
    • Time: 23.086s
    • h/s: 653,840
  5. ULM
    • Time: 129s
    • h/s: 116,694
Full hashgen benchmarks:
https://github.com/cyclone-github/hashge...benchmarks
~
Reply


Messages In This Thread
Hashes from clear passwords - by wallacebw - 03-11-2024, 09:39 PM
RE: Hashes from clear passwords - by DanielG - 03-12-2024, 09:58 AM
RE: Hashes from clear passwords - by wallacebw - 03-12-2024, 03:21 PM
RE: Hashes from clear passwords - by Snoopy - 03-12-2024, 05:44 PM
RE: Hashes from clear passwords - by DanielG - 03-12-2024, 05:10 PM
RE: Hashes from clear passwords - by wallacebw - 03-12-2024, 08:38 PM
RE: Hashes from clear passwords - by wallacebw - 03-19-2024, 01:41 AM
RE: Hashes from clear passwords - by cyclone - 05-23-2024, 05:51 PM
RE: Hashes from clear passwords - by wallacebw - 05-23-2024, 08:09 PM
RE: Hashes from clear passwords - by cyclone - 05-27-2024, 07:58 PM