// Copyright (c) 2011-2016 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "CryptoNoteBasicImpl.h" #include "CryptoNoteFormatUtils.h" #include "CryptoNoteTools.h" #include "CryptoNoteSerialization.h" #include "Common/Base58.h" #include "crypto/hash.h" #include "Common/int-util.h" using namespace Crypto; using namespace Common; namespace CryptoNote { /************************************************************************/ /* CryptoNote helper functions */ /************************************************************************/ //----------------------------------------------------------------------------------------------- uint64_t getPenalizedAmount(uint64_t amount, size_t medianSize, size_t currentBlockSize) { static_assert(sizeof(size_t) >= sizeof(uint32_t), "size_t is too small"); assert(currentBlockSize <= 2 * medianSize); assert(medianSize <= std::numeric_limits::max()); assert(currentBlockSize <= std::numeric_limits::max()); if (amount == 0) { return 0; } if (currentBlockSize <= medianSize) { return amount; } uint64_t productHi; uint64_t productLo = mul128(amount, currentBlockSize * (UINT64_C(2) * medianSize - currentBlockSize), &productHi); uint64_t penalizedAmountHi; uint64_t penalizedAmountLo; div128_32(productHi, productLo, static_cast(medianSize), &penalizedAmountHi, &penalizedAmountLo); div128_32(penalizedAmountHi, penalizedAmountLo, static_cast(medianSize), &penalizedAmountHi, &penalizedAmountLo); assert(0 == penalizedAmountHi); assert(penalizedAmountLo < amount); return penalizedAmountLo; } //----------------------------------------------------------------------- std::string getAccountAddressAsStr(uint64_t prefix, const AccountPublicAddress& adr) { BinaryArray ba; bool r = toBinaryArray(adr, ba); assert(r); return Tools::Base58::encode_addr(prefix, Common::asString(ba)); } //----------------------------------------------------------------------- bool is_coinbase(const Transaction& tx) { if(tx.inputs.size() != 1) { return false; } if(tx.inputs[0].type() != typeid(BaseInput)) { return false; } return true; } //----------------------------------------------------------------------- bool parseAccountAddressString(uint64_t& prefix, AccountPublicAddress& adr, const std::string& str) { std::string data; return Tools::Base58::decode_addr(str, prefix, data) && fromBinaryArray(adr, asBinaryArray(data)) && // ::serialization::parse_binary(data, adr) && check_key(adr.spendPublicKey) && check_key(adr.viewPublicKey); } //----------------------------------------------------------------------- bool operator ==(const CryptoNote::Transaction& a, const CryptoNote::Transaction& b) { return getObjectHash(a) == getObjectHash(b); } //----------------------------------------------------------------------- bool operator ==(const CryptoNote::Block& a, const CryptoNote::Block& b) { return CryptoNote::get_block_hash(a) == CryptoNote::get_block_hash(b); } } //-------------------------------------------------------------------------------- bool parse_hash256(const std::string& str_hash, Crypto::Hash& hash) { return Common::podFromHex(str_hash, hash); }