2015-06-08 15:50:35 +00:00
|
|
|
/*
|
2015-10-12 17:48:40 +00:00
|
|
|
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
|
|
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* The MIT License
|
2015-10-12 17:48:40 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* 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:
|
2015-10-12 17:48:40 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
2015-10-12 17:02:59 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* 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.
|
2015-06-08 15:50:35 +00:00
|
|
|
*/
|
|
|
|
|
#include <graphene/utilities/key_conversion.hpp>
|
|
|
|
|
#include <fc/crypto/base58.hpp>
|
|
|
|
|
#include <fc/variant.hpp>
|
|
|
|
|
|
|
|
|
|
namespace graphene { namespace utilities {
|
|
|
|
|
|
2015-07-23 13:32:29 +00:00
|
|
|
std::string key_to_wif(const fc::sha256& secret )
|
2015-06-08 15:50:35 +00:00
|
|
|
{
|
|
|
|
|
const size_t size_of_data_to_hash = sizeof(secret) + 1;
|
|
|
|
|
const size_t size_of_hash_bytes = 4;
|
|
|
|
|
char data[size_of_data_to_hash + size_of_hash_bytes];
|
|
|
|
|
data[0] = (char)0x80;
|
|
|
|
|
memcpy(&data[1], (char*)&secret, sizeof(secret));
|
|
|
|
|
fc::sha256 digest = fc::sha256::hash(data, size_of_data_to_hash);
|
|
|
|
|
digest = fc::sha256::hash(digest);
|
|
|
|
|
memcpy(data + size_of_data_to_hash, (char*)&digest, size_of_hash_bytes);
|
|
|
|
|
return fc::to_base58(data, sizeof(data));
|
|
|
|
|
}
|
2015-07-23 13:32:29 +00:00
|
|
|
std::string key_to_wif(const fc::ecc::private_key& key)
|
|
|
|
|
{
|
|
|
|
|
return key_to_wif( key.get_secret() );
|
|
|
|
|
}
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
fc::optional<fc::ecc::private_key> wif_to_key( const std::string& wif_key )
|
|
|
|
|
{
|
2015-06-30 21:28:07 +00:00
|
|
|
std::vector<char> wif_bytes;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
wif_bytes = fc::from_base58(wif_key);
|
|
|
|
|
}
|
|
|
|
|
catch (const fc::parse_error_exception&)
|
|
|
|
|
{
|
|
|
|
|
return fc::optional<fc::ecc::private_key>();
|
|
|
|
|
}
|
2015-06-08 15:50:35 +00:00
|
|
|
if (wif_bytes.size() < 5)
|
|
|
|
|
return fc::optional<fc::ecc::private_key>();
|
|
|
|
|
std::vector<char> key_bytes(wif_bytes.begin() + 1, wif_bytes.end() - 4);
|
|
|
|
|
fc::ecc::private_key key = fc::variant(key_bytes).as<fc::ecc::private_key>();
|
|
|
|
|
fc::sha256 check = fc::sha256::hash(wif_bytes.data(), wif_bytes.size() - 4);
|
|
|
|
|
fc::sha256 check2 = fc::sha256::hash(check);
|
|
|
|
|
|
|
|
|
|
if( memcmp( (char*)&check, wif_bytes.data() + wif_bytes.size() - 4, 4 ) == 0 ||
|
|
|
|
|
memcmp( (char*)&check2, wif_bytes.data() + wif_bytes.size() - 4, 4 ) == 0 )
|
|
|
|
|
return key;
|
|
|
|
|
|
|
|
|
|
return fc::optional<fc::ecc::private_key>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} } // end namespace graphene::utilities
|