Post
Topic
Board Bitcoin Discussion
Re: It is necessary to find one private key out of 10 million Bitcoin Addresses
by
Btceon
on 24/04/2019, 11:39:40 UTC
I managed to decrypt the public keys for each Bitcoin Address from the list.

Public keys: https://drive.google.com/drive/folders/1HByDJR9Ck5CdIwTl-v_IzcaVhsG8aKaA

Now I will try to extract a few private keys through the "Baby-step Giant-step" method.


What software do you use the Baby-step Giant-step method?







The baby-step giant-step method works by using a hash table to trade space for time. It's particularly easy to implement since python has hash tables nicely built in as dictionaries.

>>> crack_baby_giant(C, P, n, Q)
Priv key: d = 692847
Time: 0.356 secs

https://github.com/qubd/mini_ecdsa