Isaacdelly / Plutus

An automated bitcoin wallet collider that brute forces random wallet addresses
1.11k stars 523 forks source link

Different outputs from other generators #114

Closed O4karitO closed 5 years ago

O4karitO commented 5 years ago

I noticed that your function private_key_to_public_key(private_key) outputs a different public key in comparison, for instance, with this one: https://github.com/Destiner/blocksmith/blob/master/blocksmith/bitcoin.py

Is this because your method is faster and for your purpose(bruteforce) it doesn't matter if generated addresses are different? Because addresses generated using this different public key obviously also differ from real ones.

Isaacdelly commented 5 years ago

That program generates a compressed public key, this program generates an uncompressed public key. We both generate the same thing, but we output different formats.