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

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.