peerplays_migrated/libraries/protocol/pts_address.cpp
2021-11-09 16:24:26 -05:00

105 lines
3.8 KiB
C++

/*
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
*
* The MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <graphene/protocol/pts_address.hpp>
#include <fc/crypto/base58.hpp>
#include <fc/crypto/elliptic.hpp>
#include <fc/crypto/ripemd160.hpp>
#include <fc/io/raw.hpp>
#include <algorithm>
namespace graphene { namespace protocol {
pts_address::pts_address()
{
memset( addr.data(), 0, addr.size() );
}
pts_address::pts_address( const std::string& base58str )
{
std::vector<char> v = fc::from_base58( fc::string(base58str) );
if( v.size() )
memcpy( addr.data(), v.data(), std::min<size_t>( v.size(), addr.size() ) );
FC_ASSERT(is_valid(), "invalid pts_address ${a}", ("a", base58str));
}
pts_address::pts_address( const fc::ecc::public_key& pub, bool compressed, uint8_t version )
{
fc::sha256 sha2;
if( compressed )
{
auto dat = pub.serialize();
sha2 = fc::sha256::hash((char*) dat.data(), dat.size() );
}
else
{
auto dat = pub.serialize_ecc_point();
sha2 = fc::sha256::hash((char*) dat.data(), dat.size() );
}
auto rep = fc::ripemd160::hash((char*)&sha2,sizeof(sha2));
addr[0] = version;
memcpy( addr.data() + 1, (char*)&rep, sizeof(rep) );
auto check = fc::sha256::hash( addr.data(), sizeof(rep)+1 );
check = fc::sha256::hash(check);
memcpy( addr.data() + 1 + sizeof(rep), (char*)&check, 4 );
}
/**
* Checks the address to verify it has a
* valid checksum
*/
bool pts_address::is_valid()const
{
auto check = fc::sha256::hash( addr.data(), sizeof(fc::ripemd160)+1 );
check = fc::sha256::hash(check);
return memcmp( addr.data() + 1 + sizeof(fc::ripemd160), (char*)&check, 4 ) == 0;
}
pts_address::operator std::string()const
{
return fc::to_base58( addr.data(), addr.size() );
}
} } // namespace graphene
namespace fc
{
void to_variant( const graphene::protocol::pts_address& var, variant& vo, uint32_t max_depth )
{
vo = std::string(var);
}
void from_variant( const variant& var, graphene::protocol::pts_address& vo, uint32_t max_depth )
{
vo = graphene::protocol::pts_address( var.as_string() );
}
namespace raw {
template void pack( datastream<size_t>& s, const graphene::protocol::pts_address& tx,
uint32_t _max_depth=FC_PACK_MAX_DEPTH );
template void pack( datastream<char*>& s, const graphene::protocol::pts_address& tx,
uint32_t _max_depth=FC_PACK_MAX_DEPTH );
template void unpack( datastream<const char*>& s, graphene::protocol::pts_address& tx,
uint32_t _max_depth=FC_PACK_MAX_DEPTH );
} } // fc::raw