diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-01-26 19:26:34 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-01-26 19:26:43 +0100 |
commit | 91f43a33f8fb9d87bd2b6a7a279e4a6f5c1e3c96 (patch) | |
tree | 70cc726b22b1dab4948485ded3a6f59b13529438 /src | |
parent | 4c932cca6f579bfb11e0144415c3004d382b8e42 (diff) |
Full checking of all loaded keys
Diffstat (limited to 'src')
-rw-r--r-- | src/db.cpp | 4 | ||||
-rw-r--r-- | src/key.h | 12 |
2 files changed, 15 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp index 9ad05ba780..07f58ef38a 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -862,7 +862,7 @@ int CWalletDB::LoadWallet(CWallet* pwallet) ssValue >> pkey; key.SetPubKey(vchPubKey); key.SetPrivKey(pkey); - if (key.GetPubKey() != vchPubKey) + if (key.GetPubKey() != vchPubKey || !key.IsValid()) return DB_CORRUPT; } else @@ -871,6 +871,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet) ssValue >> wkey; key.SetPubKey(vchPubKey); key.SetPrivKey(wkey.vchPrivKey); + if (key.GetPubKey() != vchPubKey || !key.IsValid()) + return DB_CORRUPT; } if (!pwallet->LoadKey(key)) return DB_CORRUPT; @@ -307,6 +307,18 @@ public: return false; return true; } + + bool IsValid() + { + if (!fSet) + return false; + + bool fCompr; + CSecret secret = GetSecret(fCompr); + CKey key2; + key2.SetSecret(secret, fCompr); + return GetPubKey() == key2.GetPubKey(); + } }; #endif |