008eb35f95
The IDE include checker got to the point where it is actually useful and this removes a lot of unneeded includes. Naturally, especially for headers like util.h, this may mean we need to re-add includes in consuming cpp files that bloats the diff a bit.
139 lines
4.0 KiB
C++
139 lines
4.0 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (c) 2014-2015 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "encodings_legacy.h"
|
|
#include "chainparams.h"
|
|
|
|
namespace
|
|
{
|
|
class CBitcoinAddressVisitor : public boost::static_visitor<bool>
|
|
{
|
|
private:
|
|
CBitcoinAddress* addr;
|
|
|
|
public:
|
|
CBitcoinAddressVisitor(CBitcoinAddress* addrIn) : addr(addrIn) {}
|
|
|
|
bool operator()(const KeyId& id) const { return addr->Set(id); }
|
|
bool operator()(const CScriptID& id) const { return addr->Set(id); }
|
|
bool operator()(const CNoDestination& no) const { return false; }
|
|
};
|
|
|
|
} // anon namespace
|
|
|
|
bool CBitcoinAddress::Set(const KeyId& id)
|
|
{
|
|
SetData(Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS), &id, 20);
|
|
return true;
|
|
}
|
|
|
|
bool CBitcoinAddress::Set(const CScriptID& id)
|
|
{
|
|
SetData(Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS), &id, 20);
|
|
return true;
|
|
}
|
|
|
|
bool CBitcoinAddress::Set(const CTxDestination& dest)
|
|
{
|
|
return boost::apply_visitor(CBitcoinAddressVisitor(this), dest);
|
|
}
|
|
|
|
bool CBitcoinAddress::IsValid() const
|
|
{
|
|
bool fCorrectSize = vchData.size() == 20;
|
|
if (!fCorrectSize) {
|
|
return false;
|
|
}
|
|
const CChainParams& params = Params();
|
|
bool fKnownVersion = vchVersion == params.Base58Prefix(CChainParams::PUBKEY_ADDRESS) ||
|
|
vchVersion == params.Base58Prefix(CChainParams::SCRIPT_ADDRESS);
|
|
return fKnownVersion;
|
|
}
|
|
|
|
CTxDestination CBitcoinAddress::Get() const
|
|
{
|
|
if (!IsValid())
|
|
return CNoDestination();
|
|
uint160 id;
|
|
memcpy(&id, &vchData[0], 20);
|
|
if (vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS))
|
|
return KeyId(id);
|
|
else if (vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS))
|
|
return CScriptID(id);
|
|
else
|
|
return CNoDestination();
|
|
}
|
|
|
|
bool CBitcoinAddress::GetKeyID(KeyId& keyID) const
|
|
{
|
|
if (!IsValid() || vchVersion != Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS))
|
|
return false;
|
|
uint160 id;
|
|
memcpy(&id, &vchData[0], 20);
|
|
keyID = KeyId(id);
|
|
return true;
|
|
}
|
|
|
|
bool CBitcoinAddress::GetScriptId(CScriptID &script) const
|
|
{
|
|
if (!IsValid() || vchVersion != Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS))
|
|
return false;
|
|
uint160 id;
|
|
memcpy(&id, &vchData[0], 20);
|
|
script = CScriptID(id);
|
|
return true;
|
|
}
|
|
|
|
bool CBitcoinAddress::IsScript() const
|
|
{
|
|
return IsValid() && vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS);
|
|
}
|
|
|
|
void CBitcoinSecret::SetKey(const PrivateKey& vchSecret)
|
|
{
|
|
assert(vchSecret.isValid());
|
|
SetData(Params().Base58Prefix(CChainParams::SECRET_KEY), vchSecret.begin(), vchSecret.size());
|
|
if (vchSecret.isCompressed())
|
|
vchData.push_back(1);
|
|
}
|
|
|
|
PrivateKey CBitcoinSecret::GetKey()
|
|
{
|
|
PrivateKey ret;
|
|
assert(vchData.size() >= 32);
|
|
ret.set(vchData.begin(), vchData.begin() + 32, vchData.size() > 32 && vchData[32] == 1);
|
|
return ret;
|
|
}
|
|
|
|
bool CBitcoinSecret::IsValid() const
|
|
{
|
|
bool fExpectedFormat = vchData.size() == 32 || (vchData.size() == 33 && vchData[32] == 1);
|
|
bool fCorrectVersion = vchVersion == Params().Base58Prefix(CChainParams::SECRET_KEY);
|
|
return fExpectedFormat && fCorrectVersion;
|
|
}
|
|
|
|
bool CBitcoinSecret::SetString(const char* pszSecret)
|
|
{
|
|
return CBase58Data::SetString(pszSecret) && IsValid();
|
|
}
|
|
|
|
bool CBitcoinSecret::SetString(const std::string& strSecret)
|
|
{
|
|
return SetString(strSecret.c_str());
|
|
}
|