2011-06-01 18:27:05 +02:00
|
|
|
// Copyright (c) 2009-2011 Satoshi Nakamoto & Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include "headers.h"
|
|
|
|
#include "db.h"
|
|
|
|
|
CWallet class
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore.
* A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around.
* Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter
* CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions.
* Some code was moved from CWalletDB to CWallet, such as handling of reserve keys.
* Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument.
* The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable.
* Functions in main.cpp and db.cpp that are not used by other modules are marked static.
* The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-01 18:28:20 +02:00
|
|
|
std::vector<unsigned char> CKeyStore::GenerateNewKey()
|
2011-06-01 18:27:05 +02:00
|
|
|
{
|
|
|
|
RandAddSeedPerfmon();
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey();
|
|
|
|
if (!AddKey(key))
|
2011-06-25 14:57:32 +02:00
|
|
|
throw std::runtime_error("CKeyStore::GenerateNewKey() : AddKey failed");
|
2011-06-01 18:27:05 +02:00
|
|
|
return key.GetPubKey();
|
|
|
|
}
|
|
|
|
|
2011-06-25 14:57:32 +02:00
|
|
|
bool CBasicKeyStore::AddKey(const CKey& key)
|
2011-06-01 18:27:05 +02:00
|
|
|
{
|
2011-06-25 14:57:32 +02:00
|
|
|
CRITICAL_BLOCK(cs_KeyStore)
|
2011-06-01 18:27:05 +02:00
|
|
|
{
|
|
|
|
mapKeys[key.GetPubKey()] = key.GetPrivKey();
|
|
|
|
mapPubKeys[Hash160(key.GetPubKey())] = key.GetPubKey();
|
|
|
|
}
|
2011-06-25 14:57:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCryptoKeyStore::Unlock(const CMasterKey& vMasterKeyIn)
|
|
|
|
{
|
|
|
|
if (!SetCrypted())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::map<std::vector<unsigned char>, std::vector<unsigned char> >::const_iterator mi = mapCryptedKeys.begin();
|
|
|
|
for (; mi != mapCryptedKeys.end(); ++mi)
|
|
|
|
{
|
|
|
|
const std::vector<unsigned char> &vchPubKey = (*mi).first;
|
|
|
|
const std::vector<unsigned char> &vchCryptedSecret = (*mi).second;
|
|
|
|
CSecret vchSecret;
|
|
|
|
// decrypt vchCryptedSecret using vMasterKeyIn, into vchSecret
|
|
|
|
CKey key;
|
|
|
|
key.SetSecret(vchSecret);
|
|
|
|
if (key.GetPubKey() == vchPubKey)
|
|
|
|
break;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
vMasterKey = vMasterKeyIn;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCryptoKeyStore::AddKey(const CKey& key)
|
|
|
|
{
|
|
|
|
CRITICAL_BLOCK(cs_KeyStore)
|
|
|
|
{
|
|
|
|
if (!IsCrypted())
|
|
|
|
return CBasicKeyStore::AddKey(key);
|
|
|
|
|
|
|
|
if (IsLocked())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CSecret vchSecret = key.GetSecret();
|
|
|
|
|
|
|
|
std::vector<unsigned char> vchCryptedSecret;
|
|
|
|
// encrypt vchSecret using vMasterKey, into vchCryptedSecret
|
|
|
|
|
|
|
|
AddCryptedKey(key.GetPubKey(), vchCryptedSecret);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CCryptoKeyStore::AddCryptedKey(const std::vector<unsigned char> &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret)
|
|
|
|
{
|
|
|
|
CRITICAL_BLOCK(cs_KeyStore)
|
|
|
|
{
|
|
|
|
if (!SetCrypted())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
mapCryptedKeys[vchPubKey] = vchCryptedSecret;
|
|
|
|
mapPubKeys[Hash160(vchPubKey)] = vchPubKey;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCryptoKeyStore::GetPrivKey(const std::vector<unsigned char> &vchPubKey, CPrivKey& keyOut) const
|
|
|
|
{
|
|
|
|
if (!IsCrypted())
|
|
|
|
return CBasicKeyStore::GetPrivKey(vchPubKey, keyOut);
|
|
|
|
|
|
|
|
std::map<std::vector<unsigned char>, std::vector<unsigned char> >::const_iterator mi = mapCryptedKeys.find(vchPubKey);
|
|
|
|
if (mi != mapCryptedKeys.end())
|
|
|
|
{
|
|
|
|
const std::vector<unsigned char> &vchCryptedSecret = (*mi).second;
|
|
|
|
CSecret vchSecret;
|
|
|
|
// decrypt vchCryptedSecret using vMasterKey into vchSecret;
|
|
|
|
CKey key;
|
|
|
|
key.SetSecret(vchSecret);
|
|
|
|
keyOut = key.GetPrivKey();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-06-01 18:27:05 +02:00
|
|
|
}
|
CWallet class
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore.
* A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around.
* Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter
* CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions.
* Some code was moved from CWalletDB to CWallet, such as handling of reserve keys.
* Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument.
* The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable.
* Functions in main.cpp and db.cpp that are not used by other modules are marked static.
* The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-01 18:28:20 +02:00
|
|
|
|
2011-06-25 14:57:32 +02:00
|
|
|
bool CCryptoKeyStore::GenerateMasterKey()
|
|
|
|
{
|
|
|
|
if (!mapCryptedKeys.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
RandAddSeedPerfmon();
|
|
|
|
|
|
|
|
vMasterKey.resize(32);
|
|
|
|
RAND_bytes(&vMasterKey[0], 32);
|
|
|
|
|
|
|
|
if (!IsCrypted())
|
|
|
|
{
|
|
|
|
// upgrade wallet
|
|
|
|
fUseCrypto = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|