Wallet: added methods to sign and verify arbitrary message with multisig public signer's key (libwallet & wallet api)
This commit is contained in:
@@ -1694,6 +1694,50 @@ bool WalletImpl::verifySignedMessage(const std::string &message, const std::stri
|
||||
return m_wallet->verify(message, info.address, signature);
|
||||
}
|
||||
|
||||
std::string WalletImpl::signMultisigParticipant(const std::string &message) const
|
||||
{
|
||||
clearStatus();
|
||||
|
||||
bool ready = false;
|
||||
if (!m_wallet->multisig(&ready) || !ready) {
|
||||
m_status = Status_Error;
|
||||
m_errorString = tr("The wallet must be in multisig ready state");
|
||||
return {};
|
||||
}
|
||||
|
||||
try {
|
||||
return m_wallet->sign_multisig_participant(message);
|
||||
} catch (const std::exception& e) {
|
||||
m_status = Status_Error;
|
||||
m_errorString = e.what();
|
||||
}
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
bool WalletImpl::verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, const std::string &signature) const
|
||||
{
|
||||
clearStatus();
|
||||
|
||||
cryptonote::blobdata pkeyData;
|
||||
if(!epee::string_tools::parse_hexstr_to_binbuff(publicKey, pkeyData) || pkeyData.size() != sizeof(crypto::public_key))
|
||||
{
|
||||
m_status = Status_Error;
|
||||
m_errorString = tr("Given string is not a key");
|
||||
return false;
|
||||
}
|
||||
|
||||
try {
|
||||
crypto::public_key pkey = *reinterpret_cast<const crypto::public_key*>(pkeyData.data());
|
||||
return m_wallet->verify_with_public_key(message, pkey, signature);
|
||||
} catch (const std::exception& e) {
|
||||
m_status = Status_Error;
|
||||
m_errorString = e.what();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool WalletImpl::connectToDaemon()
|
||||
{
|
||||
bool result = m_wallet->check_connection(NULL, DEFAULT_CONNECTION_TIMEOUT_MILLIS);
|
||||
|
||||
@@ -157,6 +157,8 @@ public:
|
||||
virtual bool checkReserveProof(const std::string &address, const std::string &message, const std::string &signature, bool &good, uint64_t &total, uint64_t &spent) const;
|
||||
virtual std::string signMessage(const std::string &message);
|
||||
virtual bool verifySignedMessage(const std::string &message, const std::string &address, const std::string &signature) const;
|
||||
virtual std::string signMultisigParticipant(const std::string &message) const;
|
||||
virtual bool verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, const std::string &signature) const;
|
||||
virtual void startRefresh();
|
||||
virtual void pauseRefresh();
|
||||
virtual bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector<std::string> &unknown_parameters, std::string &error);
|
||||
|
||||
@@ -747,6 +747,21 @@ struct Wallet
|
||||
*/
|
||||
virtual bool verifySignedMessage(const std::string &message, const std::string &addres, const std::string &signature) const = 0;
|
||||
|
||||
/*!
|
||||
* \brief signMultisigParticipant signs given message with the multisig public signer key
|
||||
* \param message message to sign
|
||||
* \return signature in case of success. Sets status to Error and return empty string in case of error
|
||||
*/
|
||||
virtual std::string signMultisigParticipant(const std::string &message) const = 0;
|
||||
/*!
|
||||
* \brief verifyMessageWithPublicKey verifies that message was signed with the given public key
|
||||
* \param message message
|
||||
* \param publicKey hex encoded public key
|
||||
* \param signature signature of the message
|
||||
* \return true if the signature is correct. false and sets error state in case of error
|
||||
*/
|
||||
virtual bool verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, const std::string &signature) const = 0;
|
||||
|
||||
virtual bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector<std::string> &unknown_parameters, std::string &error) = 0;
|
||||
|
||||
virtual std::string getDefaultDataDir() const = 0;
|
||||
|
||||
Reference in New Issue
Block a user