Post
Topic
Board Development & Technical Discussion
Re: BitCrack - A tool for brute-forcing private keys
by
AlexanderCurl
on 25/12/2022, 17:35:46 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 on C++ ready to load and use.
Most my codes that are there just good for testing and research. That is what I do mostly.