mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
450 lines
8.4 KiB
C++
450 lines
8.4 KiB
C++
#include "NewcoinAddress.h"
|
|
#include "key.h"
|
|
#include "Config.h"
|
|
#include "BitcoinUtil.h"
|
|
#include "openssl/ec.h"
|
|
|
|
#include <cassert>
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
|
|
NewcoinAddress::NewcoinAddress()
|
|
{
|
|
nVersion = VER_NONE;
|
|
}
|
|
|
|
bool NewcoinAddress::IsValid()
|
|
{
|
|
return !vchData.empty();
|
|
}
|
|
|
|
//
|
|
// Hanko
|
|
//
|
|
|
|
uint160 NewcoinAddress::getHanko() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_HANKO:
|
|
return uint160(vchData);
|
|
|
|
case VER_NODE_PUBLIC:
|
|
// Note, we are encoding the left or right.
|
|
return Hash160(vchData);
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanHanko() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_HANKO:
|
|
return ToString();
|
|
|
|
case VER_NODE_PUBLIC:
|
|
{
|
|
NewcoinAddress hanko;
|
|
|
|
(void) hanko.setHanko(getHanko());
|
|
|
|
return hanko.ToString();
|
|
}
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setHanko(const std::string& strHanko)
|
|
{
|
|
return SetString(strHanko.c_str(), VER_HANKO);
|
|
}
|
|
|
|
void NewcoinAddress::setHanko(const uint160& hash160)
|
|
{
|
|
SetData(VER_HANKO, hash160.begin(), 20);
|
|
}
|
|
|
|
//
|
|
// NodePublic
|
|
//
|
|
|
|
const std::vector<unsigned char>& NewcoinAddress::getNodePublic() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_HANKO:
|
|
throw std::runtime_error("public not available from hanko");
|
|
|
|
case VER_NODE_PUBLIC:
|
|
return vchData;
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanNodePublic() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_HANKO:
|
|
throw std::runtime_error("public not available from hanko");
|
|
|
|
case VER_NODE_PUBLIC:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setNodePublic(const std::string& strPublic)
|
|
{
|
|
return SetString(strPublic.c_str(), VER_NODE_PUBLIC);
|
|
}
|
|
|
|
void NewcoinAddress::setNodePublic(const std::vector<unsigned char>& vPublic)
|
|
{
|
|
SetData(VER_NODE_PUBLIC, vPublic);
|
|
}
|
|
|
|
//
|
|
// NodePrivate
|
|
//
|
|
|
|
uint256 NewcoinAddress::getNodePrivate() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_NODE_PRIVATE:
|
|
return uint256(vchData);
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanNodePrivate() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_NODE_PRIVATE:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setNodePrivate(const std::string& strPrivate)
|
|
{
|
|
return SetString(strPrivate.c_str(), VER_NODE_PRIVATE);
|
|
}
|
|
|
|
void NewcoinAddress::setNodePrivate(uint256 hash256)
|
|
{
|
|
SetData(VER_NODE_PRIVATE, hash256.begin(), 32);
|
|
}
|
|
|
|
//
|
|
// AccountID
|
|
//
|
|
|
|
uint160 NewcoinAddress::getAccountID() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_ID:
|
|
return uint160(vchData);
|
|
|
|
case VER_ACCOUNT_PUBLIC:
|
|
// Note, we are encoding the left or right.
|
|
return Hash160(vchData);
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanAccountID() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_ID:
|
|
return ToString();
|
|
|
|
case VER_ACCOUNT_PUBLIC:
|
|
{
|
|
NewcoinAddress accountID;
|
|
|
|
(void) accountID.setAccountID(getAccountID());
|
|
|
|
return accountID.ToString();
|
|
}
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setAccountID(const std::string& strAccountID)
|
|
{
|
|
return SetString(strAccountID.c_str(), VER_ACCOUNT_ID);
|
|
}
|
|
|
|
void NewcoinAddress::setAccountID(const uint160& hash160)
|
|
{
|
|
SetData(VER_ACCOUNT_ID, hash160.begin(), 20);
|
|
}
|
|
|
|
//
|
|
// AccountPublic
|
|
//
|
|
|
|
const std::vector<unsigned char>& NewcoinAddress::getAccountPublic() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_ID:
|
|
throw std::runtime_error("public not available from account id");
|
|
break;
|
|
|
|
case VER_ACCOUNT_PUBLIC:
|
|
return vchData;
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanAccountPublic() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_ID:
|
|
throw std::runtime_error("public not available from account id");
|
|
|
|
case VER_ACCOUNT_PUBLIC:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setAccountPublic(const std::string& strPublic)
|
|
{
|
|
return SetString(strPublic.c_str(), VER_ACCOUNT_PUBLIC);
|
|
}
|
|
|
|
void NewcoinAddress::setAccountPublic(const std::vector<unsigned char>& vPublic)
|
|
{
|
|
SetData(VER_ACCOUNT_PUBLIC, vPublic);
|
|
}
|
|
|
|
void NewcoinAddress::setAccountPublic(const NewcoinAddress& generator, int seq)
|
|
{
|
|
CKey pubkey = CKey(generator, seq);
|
|
|
|
setAccountPublic(pubkey.GetPubKey());
|
|
}
|
|
|
|
//
|
|
// AccountPrivate
|
|
//
|
|
|
|
uint256 NewcoinAddress::getAccountPrivate() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_PRIVATE:
|
|
return uint256(vchData);
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanAccountPrivate() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_ACCOUNT_PRIVATE:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setAccountPrivate(const std::string& strPrivate)
|
|
{
|
|
return SetString(strPrivate.c_str(), VER_ACCOUNT_PRIVATE);
|
|
}
|
|
|
|
void NewcoinAddress::setAccountPrivate(uint256 hash256)
|
|
{
|
|
SetData(VER_ACCOUNT_PRIVATE, hash256.begin(), 32);
|
|
}
|
|
|
|
//
|
|
// Family Generators
|
|
//
|
|
|
|
BIGNUM* NewcoinAddress::getFamilyGeneratorBN() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_FAMILY_GENERATOR:
|
|
// Do nothing.
|
|
break;
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
|
|
BIGNUM* ret = BN_bin2bn(&vchData[0], vchData.size(), NULL);
|
|
assert(ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
const std::vector<unsigned char>& NewcoinAddress::getFamilyGenerator() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_FAMILY_GENERATOR:
|
|
// Do nothing.
|
|
return vchData;
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
std::string NewcoinAddress::humanFamilyGenerator() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_FAMILY_GENERATOR:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setFamilyGenerator(const std::string& strGenerator)
|
|
{
|
|
return SetString(strGenerator.c_str(), VER_FAMILY_GENERATOR);
|
|
}
|
|
|
|
void NewcoinAddress::setFamilyGenerator(const std::vector<unsigned char>& vPublic)
|
|
{
|
|
SetData(VER_FAMILY_GENERATOR, vPublic);
|
|
}
|
|
|
|
void NewcoinAddress::setFamilyGenerator(const NewcoinAddress& seed)
|
|
{
|
|
seed.seedInfo(this, 0);
|
|
}
|
|
|
|
//
|
|
// Family Seed
|
|
//
|
|
|
|
// --> dstGenerator: Set the public generator from our seed.
|
|
void NewcoinAddress::seedInfo(NewcoinAddress* dstGenerator, BIGNUM** dstPrivateKey) const
|
|
{
|
|
CKey pubkey = CKey(getFamilySeed());
|
|
|
|
if (dstGenerator) {
|
|
dstGenerator->setFamilyGenerator(pubkey.GetPubKey());
|
|
}
|
|
|
|
if (dstPrivateKey)
|
|
*dstPrivateKey = pubkey.GetSecretBN();
|
|
}
|
|
|
|
uint128 NewcoinAddress::getFamilySeed() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_FAMILY_SEED:
|
|
return uint128(vchData);
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
BIGNUM* NewcoinAddress::getFamilyPrivateKey() const
|
|
{
|
|
BIGNUM* ret;
|
|
|
|
seedInfo(0, &ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
std::string NewcoinAddress::humanFamilySeed() const
|
|
{
|
|
switch (nVersion) {
|
|
case VER_NONE:
|
|
throw std::runtime_error("unset source");
|
|
|
|
case VER_FAMILY_SEED:
|
|
return ToString();
|
|
|
|
default:
|
|
throw std::runtime_error("bad source");
|
|
}
|
|
}
|
|
|
|
bool NewcoinAddress::setFamilySeed(const std::string& strSeed)
|
|
{
|
|
return SetString(strSeed.c_str(), VER_FAMILY_SEED);
|
|
}
|
|
|
|
void NewcoinAddress::setFamilySeed(uint128 hash128) {
|
|
SetData(VER_FAMILY_SEED, hash128.begin(), 16);
|
|
}
|
|
// vim:ts=4
|