Transforming existing private key into new private key?

1

Is it possible to derive a new private key from an existing private key and retain the same bitcoin balance without any transactions?

quincy qwilfish

Posted 2017-12-23T04:59:30.283

Reputation: 13

Answers

1

No. A private key corresponds to one public key (and vice versa), and that corresponds to one address (and vice versa). Having a new private key (regardless of where it comes from, so it could be derived from a different private key) would mean that you have a new public key and a new address. Thus you cannot spend any funds associated with the first address with the new private key because it is not associated with that address.

Andrew Chow

Posted 2017-12-23T04:59:30.283

Reputation: 40 910

2

Technically, you can derive two addresses from a single private key. Bitcoin supports both compressed and uncompressed public key formats, which can both be used to generate addresses. Don't be fooled, however. It's still the same public key, just written differently. See https://bitcoin.stackexchange.com/a/3062/24974

Jestin 2017-12-23T06:09:17.067