You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
283 lines
7.1 KiB
283 lines
7.1 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
|
|
cpp-ethereum 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.
|
|
|
|
Foobar 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file Common.cpp
|
|
* @author Gav Wood <i@gavwood.com>
|
|
* @date 2014
|
|
*/
|
|
|
|
#include "Common.h"
|
|
|
|
#include <random>
|
|
#if WIN32
|
|
#pragma warning(push)
|
|
#pragma warning(disable:4244)
|
|
#else
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
#endif
|
|
#include <secp256k1.h>
|
|
#include <sha3.h>
|
|
#if WIN32
|
|
#pragma warning(pop)
|
|
#else
|
|
#endif
|
|
#include "Exceptions.h"
|
|
using namespace std;
|
|
using namespace eth;
|
|
|
|
//#define ETH_ADDRESS_DEBUG 1
|
|
|
|
// Logging
|
|
int eth::g_logVerbosity = 8;
|
|
map<type_info const*, bool> eth::g_logOverride;
|
|
|
|
ThreadLocalLogName eth::t_logThreadName("main");
|
|
|
|
void eth::simpleDebugOut(std::string const& _s, char const*)
|
|
{
|
|
cout << _s << endl << flush;
|
|
}
|
|
|
|
std::function<void(std::string const&, char const*)> eth::g_logPost = simpleDebugOut;
|
|
|
|
std::string eth::escaped(std::string const& _s, bool _all)
|
|
{
|
|
std::string ret;
|
|
ret.reserve(_s.size());
|
|
ret.push_back('"');
|
|
for (auto i: _s)
|
|
if (i == '"' && !_all)
|
|
ret += "\\\"";
|
|
else if (i == '\\' && !_all)
|
|
ret += "\\\\";
|
|
else if (i < ' ' || i > 127 || _all)
|
|
{
|
|
ret += "\\x";
|
|
ret.push_back("0123456789abcdef"[(uint8_t)i / 16]);
|
|
ret.push_back("0123456789abcdef"[(uint8_t)i % 16]);
|
|
}
|
|
else
|
|
ret.push_back(i);
|
|
ret.push_back('"');
|
|
return ret;
|
|
}
|
|
|
|
std::string eth::randomWord()
|
|
{
|
|
static std::mt19937_64 s_eng(0);
|
|
std::string ret(std::uniform_int_distribution<int>(4, 10)(s_eng), ' ');
|
|
char const n[] = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890";
|
|
std::uniform_int_distribution<int> d(0, sizeof(n) - 2);
|
|
for (char& c: ret)
|
|
c = n[d(s_eng)];
|
|
return ret;
|
|
}
|
|
|
|
int eth::fromHex(char _i)
|
|
{
|
|
if (_i >= '0' && _i <= '9')
|
|
return _i - '0';
|
|
if (_i >= 'a' && _i <= 'f')
|
|
return _i - 'a' + 10;
|
|
if (_i >= 'A' && _i <= 'F')
|
|
return _i - 'A' + 10;
|
|
throw BadHexCharacter();
|
|
}
|
|
|
|
bytes eth::fromUserHex(std::string const& _s)
|
|
{
|
|
assert(_s.size() % 2 == 0);
|
|
if (_s.size() < 2)
|
|
return bytes();
|
|
uint s = (_s[0] == '0' && _s[1] == 'x') ? 2 : 0;
|
|
std::vector<uint8_t> ret;
|
|
ret.reserve((_s.size() - s) / 2);
|
|
for (uint i = s; i < _s.size(); i += 2)
|
|
ret.push_back((byte)(fromHex(_s[i]) * 16 + fromHex(_s[i + 1])));
|
|
return ret;
|
|
}
|
|
|
|
bytes eth::toHex(std::string const& _s)
|
|
{
|
|
std::vector<uint8_t> ret;
|
|
ret.reserve(_s.size() * 2);
|
|
for (auto i: _s)
|
|
{
|
|
ret.push_back(i / 16);
|
|
ret.push_back(i % 16);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
std::string eth::sha3(std::string const& _input, bool _hex)
|
|
{
|
|
if (!_hex)
|
|
{
|
|
string ret(32, '\0');
|
|
sha3(bytesConstRef((byte const*)_input.data(), _input.size()), bytesRef((byte*)ret.data(), 32));
|
|
return ret;
|
|
}
|
|
|
|
uint8_t buf[32];
|
|
sha3(bytesConstRef((byte const*)_input.data(), _input.size()), bytesRef((byte*)&(buf[0]), 32));
|
|
std::string ret(64, '\0');
|
|
for (unsigned int i = 0; i < 32; i++)
|
|
sprintf((char*)(ret.data())+i*2, "%02x", buf[i]);
|
|
return ret;
|
|
}
|
|
|
|
void eth::sha3(bytesConstRef _input, bytesRef _output)
|
|
{
|
|
CryptoPP::SHA3_256 ctx;
|
|
ctx.Update((byte*)_input.data(), _input.size());
|
|
assert(_output.size() >= 32);
|
|
ctx.Final(_output.data());
|
|
}
|
|
|
|
bytes eth::sha3Bytes(bytesConstRef _input)
|
|
{
|
|
bytes ret(32);
|
|
sha3(_input, &ret);
|
|
return ret;
|
|
}
|
|
|
|
h256 eth::sha3(bytesConstRef _input)
|
|
{
|
|
h256 ret;
|
|
sha3(_input, bytesRef(&ret[0], 32));
|
|
return ret;
|
|
}
|
|
|
|
Address eth::toAddress(Secret _private)
|
|
{
|
|
secp256k1_start();
|
|
|
|
byte pubkey[65];
|
|
int pubkeylen = 65;
|
|
int ok = secp256k1_ecdsa_seckey_verify(_private.data());
|
|
if (!ok)
|
|
return Address();
|
|
ok = secp256k1_ecdsa_pubkey_create(pubkey, &pubkeylen, _private.data(), 0);
|
|
assert(pubkeylen == 65);
|
|
if (!ok)
|
|
return Address();
|
|
ok = secp256k1_ecdsa_pubkey_verify(pubkey, 65);
|
|
if (!ok)
|
|
return Address();
|
|
auto ret = right160(eth::sha3(bytesConstRef(&(pubkey[1]), 64)));
|
|
#if ETH_ADDRESS_DEBUG
|
|
cout << "---- ADDRESS -------------------------------" << endl;
|
|
cout << "SEC: " << _private << endl;
|
|
cout << "PUB: " << asHex(bytesConstRef(&(pubkey[1]), 64)) << endl;
|
|
cout << "ADR: " << ret << endl;
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
KeyPair KeyPair::create()
|
|
{
|
|
secp256k1_start();
|
|
static std::mt19937_64 s_eng(time(0));
|
|
std::uniform_int_distribution<byte> d(0, 255);
|
|
|
|
for (int i = 0; i < 100; ++i)
|
|
{
|
|
h256 sec;
|
|
for (uint i = 0; i < 32; ++i)
|
|
sec[i] = d(s_eng);
|
|
|
|
KeyPair ret(sec);
|
|
if (ret.address())
|
|
return ret;
|
|
}
|
|
return KeyPair();
|
|
}
|
|
|
|
KeyPair::KeyPair(h256 _sec):
|
|
m_secret(_sec)
|
|
{
|
|
int ok = secp256k1_ecdsa_seckey_verify(m_secret.data());
|
|
if (!ok)
|
|
return;
|
|
|
|
byte pubkey[65];
|
|
int pubkeylen = 65;
|
|
ok = secp256k1_ecdsa_pubkey_create(pubkey, &pubkeylen, m_secret.data(), 0);
|
|
if (!ok || pubkeylen != 65)
|
|
return;
|
|
|
|
ok = secp256k1_ecdsa_pubkey_verify(pubkey, 65);
|
|
if (!ok)
|
|
return;
|
|
|
|
m_secret = m_secret;
|
|
memcpy(m_public.data(), &(pubkey[1]), 64);
|
|
m_address = right160(eth::sha3(bytesConstRef(&(pubkey[1]), 64)));
|
|
|
|
#if ETH_ADDRESS_DEBUG
|
|
cout << "---- ADDRESS -------------------------------" << endl;
|
|
cout << "SEC: " << m_secret << endl;
|
|
cout << "PUB: " << m_public << endl;
|
|
cout << "ADR: " << m_address << endl;
|
|
#endif
|
|
}
|
|
|
|
static const vector<pair<u256, string>> g_units =
|
|
{
|
|
{((((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000000, "Uether"},
|
|
{((((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000, "Vether"},
|
|
{((((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000, "Dether"},
|
|
{(((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000000, "Nether"},
|
|
{(((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000000, "Yether"},
|
|
{(((u256(1000000000) * 1000000000) * 1000000000) * 1000000000) * 1000, "Zether"},
|
|
{((u256(1000000000) * 1000000000) * 1000000000) * 1000000000, "Eether"},
|
|
{((u256(1000000000) * 1000000000) * 1000000000) * 1000000, "Pether"},
|
|
{((u256(1000000000) * 1000000000) * 1000000000) * 1000, "Tether"},
|
|
{(u256(1000000000) * 1000000000) * 1000000000, "Gether"},
|
|
{(u256(1000000000) * 1000000000) * 1000000, "Mether"},
|
|
{(u256(1000000000) * 1000000000) * 1000, "Kether"},
|
|
{u256(1000000000) * 1000000000, "ether"},
|
|
{u256(1000000000) * 1000000, "finney"},
|
|
{u256(1000000000) * 1000, "szabo"},
|
|
{u256(1000000000), "Gwei"},
|
|
{u256(1000000), "Mwei"},
|
|
{u256(1000), "Kwei"},
|
|
{u256(1), "wei"}
|
|
};
|
|
|
|
vector<pair<u256, string>> const& eth::units()
|
|
{
|
|
return g_units;
|
|
}
|
|
|
|
std::string eth::formatBalance(u256 _b)
|
|
{
|
|
ostringstream ret;
|
|
if (_b > g_units[0].first * 10000)
|
|
{
|
|
ret << (_b / g_units[0].first) << " " << g_units[0].second;
|
|
return ret.str();
|
|
}
|
|
ret << setprecision(5);
|
|
for (auto const& i: g_units)
|
|
if (i.first != 1 && _b >= i.first * 100)
|
|
{
|
|
ret << (double(_b / (i.first / 1000)) / 1000.0) << " " << i.second;
|
|
return ret.str();
|
|
}
|
|
ret << _b << " wei";
|
|
return ret.str();
|
|
}
|
|
|