Merge #8851: [wallet] Move key derivation logic from GenerateNewKey to DeriveNewChildKey (pstratem)
e198c52
Move key derivation logic from GenerateNewKey to DeriveNewChildKey (Patrick Strateman)
This commit is contained in:
commit
940748b4b0
2 changed files with 42 additions and 37 deletions
|
@ -100,6 +100,29 @@ CPubKey CWallet::GenerateNewKey()
|
||||||
|
|
||||||
// use HD key derivation if HD was enabled during wallet creation
|
// use HD key derivation if HD was enabled during wallet creation
|
||||||
if (IsHDEnabled()) {
|
if (IsHDEnabled()) {
|
||||||
|
DeriveNewChildKey(metadata, secret);
|
||||||
|
} else {
|
||||||
|
secret.MakeNewKey(fCompressed);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compressed public keys were introduced in version 0.6.0
|
||||||
|
if (fCompressed)
|
||||||
|
SetMinVersion(FEATURE_COMPRPUBKEY);
|
||||||
|
|
||||||
|
CPubKey pubkey = secret.GetPubKey();
|
||||||
|
assert(secret.VerifyPubKey(pubkey));
|
||||||
|
|
||||||
|
mapKeyMetadata[pubkey.GetID()] = metadata;
|
||||||
|
if (!nTimeFirstKey || nCreationTime < nTimeFirstKey)
|
||||||
|
nTimeFirstKey = nCreationTime;
|
||||||
|
|
||||||
|
if (!AddKeyPubKey(secret, pubkey))
|
||||||
|
throw std::runtime_error(std::string(__func__) + ": AddKey failed");
|
||||||
|
return pubkey;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CWallet::DeriveNewChildKey(CKeyMetadata& metadata, CKey& secret)
|
||||||
|
{
|
||||||
// for now we use a fixed keypath scheme of m/0'/0'/k
|
// for now we use a fixed keypath scheme of m/0'/0'/k
|
||||||
CKey key; //master key seed (256bit)
|
CKey key; //master key seed (256bit)
|
||||||
CExtKey masterKey; //hd master key
|
CExtKey masterKey; //hd master key
|
||||||
|
@ -121,8 +144,7 @@ CPubKey CWallet::GenerateNewKey()
|
||||||
accountKey.Derive(externalChainChildKey, BIP32_HARDENED_KEY_LIMIT);
|
accountKey.Derive(externalChainChildKey, BIP32_HARDENED_KEY_LIMIT);
|
||||||
|
|
||||||
// derive child key at next index, skip keys already known to the wallet
|
// derive child key at next index, skip keys already known to the wallet
|
||||||
do
|
do {
|
||||||
{
|
|
||||||
// always derive hardened keys
|
// always derive hardened keys
|
||||||
// childIndex | BIP32_HARDENED_KEY_LIMIT = derive childIndex in hardened child-index-range
|
// childIndex | BIP32_HARDENED_KEY_LIMIT = derive childIndex in hardened child-index-range
|
||||||
// example: 1 | BIP32_HARDENED_KEY_LIMIT == 0x80000001 == 2147483649
|
// example: 1 | BIP32_HARDENED_KEY_LIMIT == 0x80000001 == 2147483649
|
||||||
|
@ -137,24 +159,6 @@ CPubKey CWallet::GenerateNewKey()
|
||||||
// update the chain model in the database
|
// update the chain model in the database
|
||||||
if (!CWalletDB(strWalletFile).WriteHDChain(hdChain))
|
if (!CWalletDB(strWalletFile).WriteHDChain(hdChain))
|
||||||
throw std::runtime_error(std::string(__func__) + ": Writing HD chain model failed");
|
throw std::runtime_error(std::string(__func__) + ": Writing HD chain model failed");
|
||||||
} else {
|
|
||||||
secret.MakeNewKey(fCompressed);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Compressed public keys were introduced in version 0.6.0
|
|
||||||
if (fCompressed)
|
|
||||||
SetMinVersion(FEATURE_COMPRPUBKEY);
|
|
||||||
|
|
||||||
CPubKey pubkey = secret.GetPubKey();
|
|
||||||
assert(secret.VerifyPubKey(pubkey));
|
|
||||||
|
|
||||||
mapKeyMetadata[pubkey.GetID()] = metadata;
|
|
||||||
if (!nTimeFirstKey || nCreationTime < nTimeFirstKey)
|
|
||||||
nTimeFirstKey = nCreationTime;
|
|
||||||
|
|
||||||
if (!AddKeyPubKey(secret, pubkey))
|
|
||||||
throw std::runtime_error(std::string(__func__) + ": AddKey failed");
|
|
||||||
return pubkey;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CWallet::AddKeyPubKey(const CKey& secret, const CPubKey &pubkey)
|
bool CWallet::AddKeyPubKey(const CKey& secret, const CPubKey &pubkey)
|
||||||
|
|
|
@ -698,6 +698,7 @@ public:
|
||||||
* Generate a new key
|
* Generate a new key
|
||||||
*/
|
*/
|
||||||
CPubKey GenerateNewKey();
|
CPubKey GenerateNewKey();
|
||||||
|
void DeriveNewChildKey(CKeyMetadata& metadata, CKey& secret);
|
||||||
//! Adds a key to the store, and saves it to disk.
|
//! Adds a key to the store, and saves it to disk.
|
||||||
bool AddKeyPubKey(const CKey& key, const CPubKey &pubkey);
|
bool AddKeyPubKey(const CKey& key, const CPubKey &pubkey);
|
||||||
//! Adds a key to the store, without saving it to disk (used by LoadWallet)
|
//! Adds a key to the store, without saving it to disk (used by LoadWallet)
|
||||||
|
|
Loading…
Add table
Reference in a new issue