Post
Topic
Board Beginners & Help
Re: Collisions on private addresses? Balances?
by
PowerGlove
on 03/07/2022, 12:00:37 UTC
So my computations are now 500 million * 60000 per 24hrs.
I would double-check your numbers though, they seem a little high for a core i5...
Actually i find it's quite slow. Recovery software such as FinderOuter could achieve 64 address key/second on i3[3].

I suppose it's difficult to say without knowing anything about his implementation. He's saying he's doing 500 million * 60000 address comparisons per day. If his implementation is naive (checking each generated key against each address in the "database") that works out to ~350 million key comparisons per second. If his implementation is less naive (using a hash table for the 60000 "known" addresses) then that works out to nearly 6000 keys generated and compared per second.

If he's doing it the first (naive) way, then I think he's probably made a mistake somewhere without realizing it, because that number (350 million comparisons per second) seems obviously out-of-range for an i5 (to me, anyway).

If he's doing it the second (less naive) way, then assuming it's "homebrew" that's been quickly slapped together in 3 days, it's still suspiciously fast, IMHO.

Maybe I've misread/misunderstood something or calculated incorrectly. I'm always happy to be corrected Smiley