7
1
Seeing as the topic of generating address conflicts comes up every now and then, I am wondering if someone looked into the problem a bit further.
Has anyone measured the speed at which Bitcoin addresses can be generated (mainly with some efficient languages, not javascript)? Are there programs akin to GPU miners that instead of generating hashes would generate addresses?
3Surely it's not just the speed of generating that's interesting. You need to consider the time it takes to look up whether you have a collision, assuming that's the point of generating addresses as fast as possible. – Julian Noble – 2011-11-29T16:44:47.953
1@JulianNoble: Presumably you'll scan the blockchain in advance and compile a list of addresses you'd like to usurp. You put these in a set data structure (maybe a probabilistic one like Bloom filter) and check against it any address you generate. Then the only question is whether this can be done efficiently on a GPU. – Meni Rosenfeld – 2011-11-29T19:26:42.167