You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "brute_force.py", line 3, in
from bitcoin import G, fast_multiply
ModuleNotFoundError: No module named 'bitcoin'
How and from where to import it>?
The text was updated successfully, but these errors were encountered:
As @darosior said, you have to install the bitcoin dependency for some scripts.
However, you have to understand that most of theses scripts are proof-of-concept.
If you really wish to bruteforce something, i would update the substract_optim.py script.
However, this last one has a high space complexity, but i think we can do better (not quite sure, but there is an algo for the discrete-log with a constant space complexity and running-time complexity of O(2^(n/2))).
python3 brute_force.py
Traceback (most recent call last):
File "brute_force.py", line 3, in
from bitcoin import G, fast_multiply
ModuleNotFoundError: No module named 'bitcoin'
How and from where to import it>?
The text was updated successfully, but these errors were encountered: