Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: Collection of 18.509 found and used Brainwallets
by
NotATether
on 12/01/2021, 17:00:48 UTC
⭐ Merited by malevolent (1)
Hi,
How do you manage to hash 300k passphrases per second? What do you use for that? My Pythons script with 'bictoin' library on 8 cores is doing only 800/s Sad

He definitely did not use Python because that's the reason your script is so slow!

Python executes all statements through an interpreter, it does not compile it down into assembly code so eh extra overhead that the Python runtime is adding is killing the speed of your script. You should look into using brainflayer which is written in C, and is optimized with its own hashing functions instead of relying on a third-party library.