wallet2_api: API to sign and verify a message

This commit is contained in:
moneromooo-monero 2016-11-08 09:58:46 +00:00
parent e8a55db29d
commit c441a61ef6
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 35 additions and 0 deletions

View file

@ -752,6 +752,23 @@ std::string WalletImpl::getTxKey(const std::string &txid) const
}
}
std::string WalletImpl::signMessage(const std::string &message)
{
return m_wallet->sign(message);
}
bool WalletImpl::verifySignedMessage(const std::string &message, const std::string &address, const std::string &signature) const
{
cryptonote::account_public_address addr;
bool has_payment_id;
crypto::hash8 payment_id;
if (!cryptonote::get_account_integrated_address_from_str(addr, has_payment_id, payment_id, m_wallet->testnet(), address))
return false;
return m_wallet->verify(message, addr, signature);
}
bool WalletImpl::connectToDaemon()
{
bool result = m_wallet->check_connection();