Post
Topic
Board Development & Technical Discussion
Re: BitCrack - A tool for brute-forcing private keys
by
Mikorist
on 25/12/2022, 20:18:44 UTC

https://github.com/AlexCurl/bitcoin_tools/blob/main/secp256k1/secp256k1.py

Could numba be inserted into this code? I have not yet seen secp256k1 that the calculations go through @jit - that it has full GPU support.

if you are on python just use this library: https://github.com/iceland2k14/secp256k1
fastest out there for python since .dll(Windows) and .so(Linux) are shared libraries containing compiled functions written in C++ ready to load and use.
Most my codes that are there just good for testing and research. That is what I do mostly.
For CPU best option is VanitySearch code base it is the fastest.
It is in C++ and easy to understand and use.


I want to make one that will do 300Miilion Key/s from python. One or more GPUs....The only way is through mumba and jit.
https://numba.pydata.org/
And nowhere is there an example of how to calculate secp256k1 through @jit . These are simple mathematical formulas, not rocket science.