1

Apart from Re-using same R value, What are the necessarily ecdsa values needed or method to recover the private key of a p2pkh address.

When same address is reused numerous times to receive bitcoin what threat does it pose?

Wuncler
  • 45
  • 3

1 Answers1

0

What are the necessarily ecdsa values needed to recover the private key of a p2pkh address.

A key is recoverable if two signatures are created with the same R value.

When same address is reused numerous times to receive bitcoin what threat does it pose?

It leads to some loss of privacy, allowing different payments to be linked together.

Raghav Sood
  • 17,027
  • 3
  • 22
  • 43
  • Reusing addresses might also put you in a predicament where you are unaware of which customer paid for what service, especially if they are priced the same. – Ugam Kamat Aug 12 '19 at 10:57
  • Is that the only conditions for recovering p2pkh private key? Apart from reused R values – Wuncler Aug 12 '19 at 11:25
  • It's not really relevant that it is a p2pkh key - Two signatures with the same value are all you need to recover an ECDSA private key. The key can also be "recovered" if it was created with bad entropy, such as via a brainwalle. – Raghav Sood Aug 12 '19 at 11:28