Bitcoin Core 28.99.0
P2P Digital Currency
signverifymessagedialog.cpp
Go to the documentation of this file.
1// Copyright (c) 2011-2022 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
6#include <qt/forms/ui_signverifymessagedialog.h>
7
9#include <qt/guiutil.h>
10#include <qt/platformstyle.h>
11#include <qt/walletmodel.h>
12
13#include <common/signmessage.h> // For MessageSign(), MessageVerify()
14#include <bitcoin-build-config.h> // IWYU pragma: keep
15#include <key_io.h>
16#include <wallet/wallet.h>
17
18#include <vector>
19
20#include <QClipboard>
21
22SignVerifyMessageDialog::SignVerifyMessageDialog(const PlatformStyle *_platformStyle, QWidget *parent) :
23 QDialog(parent, GUIUtil::dialog_flags),
25 platformStyle(_platformStyle)
26{
27 ui->setupUi(this);
28
29 ui->addressBookButton_SM->setIcon(platformStyle->SingleColorIcon(":/icons/address-book"));
30 ui->pasteButton_SM->setIcon(platformStyle->SingleColorIcon(":/icons/editpaste"));
31 ui->copySignatureButton_SM->setIcon(platformStyle->SingleColorIcon(":/icons/editcopy"));
32 ui->signMessageButton_SM->setIcon(platformStyle->SingleColorIcon(":/icons/edit"));
33 ui->clearButton_SM->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));
34 ui->addressBookButton_VM->setIcon(platformStyle->SingleColorIcon(":/icons/address-book"));
35 ui->verifyMessageButton_VM->setIcon(platformStyle->SingleColorIcon(":/icons/transaction_0"));
36 ui->clearButton_VM->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));
37
38 GUIUtil::setupAddressWidget(ui->addressIn_SM, this);
39 GUIUtil::setupAddressWidget(ui->addressIn_VM, this);
40
41 ui->addressIn_SM->installEventFilter(this);
42 ui->messageIn_SM->installEventFilter(this);
43 ui->signatureOut_SM->installEventFilter(this);
44 ui->addressIn_VM->installEventFilter(this);
45 ui->messageIn_VM->installEventFilter(this);
46 ui->signatureIn_VM->installEventFilter(this);
47
48 ui->signatureOut_SM->setFont(GUIUtil::fixedPitchFont());
49 ui->signatureIn_VM->setFont(GUIUtil::fixedPitchFont());
50
52}
53
55{
56 delete ui;
57}
58
60{
61 this->model = _model;
62}
63
64void SignVerifyMessageDialog::setAddress_SM(const QString &address)
65{
66 ui->addressIn_SM->setText(address);
67 ui->messageIn_SM->setFocus();
68}
69
70void SignVerifyMessageDialog::setAddress_VM(const QString &address)
71{
72 ui->addressIn_VM->setText(address);
73 ui->messageIn_VM->setFocus();
74}
75
77{
78 ui->tabWidget->setCurrentIndex(0);
79 if (fShow)
80 this->show();
81}
82
84{
85 ui->tabWidget->setCurrentIndex(1);
86 if (fShow)
87 this->show();
88}
89
91{
93 {
94 model->refresh(/*pk_hash_only=*/true);
97 if (dlg.exec())
98 {
100 }
101 }
102}
103
105{
106 setAddress_SM(QApplication::clipboard()->text());
107}
108
110{
111 if (!model)
112 return;
113
114 /* Clear old signature to ensure users don't get confused on error with an old signature displayed */
115 ui->signatureOut_SM->clear();
116
117 CTxDestination destination = DecodeDestination(ui->addressIn_SM->text().toStdString());
118 if (!IsValidDestination(destination)) {
119 ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
120 ui->statusLabel_SM->setText(tr("The entered address is invalid.") + QString(" ") + tr("Please check the address and try again."));
121 return;
122 }
123 const PKHash* pkhash = std::get_if<PKHash>(&destination);
124 if (!pkhash) {
125 ui->addressIn_SM->setValid(false);
126 ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
127 ui->statusLabel_SM->setText(tr("The entered address does not refer to a legacy (P2PKH) key. Message signing for SegWit and other non-P2PKH address types is not supported in this version of %1. Please check the address and try again.").arg(CLIENT_NAME));
128 return;
129 }
130
132 if (!ctx.isValid())
133 {
134 ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
135 ui->statusLabel_SM->setText(tr("Wallet unlock was cancelled."));
136 return;
137 }
138
139 const std::string& message = ui->messageIn_SM->document()->toPlainText().toStdString();
140 std::string signature;
141 SigningResult res = model->wallet().signMessage(message, *pkhash, signature);
142
143 QString error;
144 switch (res) {
146 error = tr("No error");
147 break;
149 error = tr("Private key for the entered address is not available.");
150 break;
152 error = tr("Message signing failed.");
153 break;
154 // no default case, so the compiler can warn about missing cases
155 }
156
157 if (res != SigningResult::OK) {
158 ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
159 ui->statusLabel_SM->setText(QString("<nobr>") + error + QString("</nobr>"));
160 return;
161 }
162
163 ui->statusLabel_SM->setStyleSheet("QLabel { color: green; }");
164 ui->statusLabel_SM->setText(QString("<nobr>") + tr("Message signed.") + QString("</nobr>"));
165
166 ui->signatureOut_SM->setText(QString::fromStdString(signature));
167}
168
170{
171 GUIUtil::setClipboard(ui->signatureOut_SM->text());
172}
173
175{
176 ui->addressIn_SM->clear();
177 ui->messageIn_SM->clear();
178 ui->signatureOut_SM->clear();
179 ui->statusLabel_SM->clear();
180
181 ui->addressIn_SM->setFocus();
182}
183
185{
187 {
190 if (dlg.exec())
191 {
193 }
194 }
195}
196
198{
199 const std::string& address = ui->addressIn_VM->text().toStdString();
200 const std::string& signature = ui->signatureIn_VM->text().toStdString();
201 const std::string& message = ui->messageIn_VM->document()->toPlainText().toStdString();
202
203 const auto result = MessageVerify(address, signature, message);
204
205 if (result == MessageVerificationResult::OK) {
206 ui->statusLabel_VM->setStyleSheet("QLabel { color: green; }");
207 } else {
208 ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
209 }
210
211 switch (result) {
213 ui->statusLabel_VM->setText(
214 QString("<nobr>") + tr("Message verified.") + QString("</nobr>")
215 );
216 return;
218 ui->statusLabel_VM->setText(
219 tr("The entered address is invalid.") + QString(" ") +
220 tr("Please check the address and try again.")
221 );
222 return;
224 ui->addressIn_VM->setValid(false);
225 ui->statusLabel_VM->setText(tr("The entered address does not refer to a legacy (P2PKH) key. Message signing for SegWit and other non-P2PKH address types is not supported in this version of %1. Please check the address and try again.").arg(CLIENT_NAME));
226 return;
228 ui->signatureIn_VM->setValid(false);
229 ui->statusLabel_VM->setText(
230 tr("The signature could not be decoded.") + QString(" ") +
231 tr("Please check the signature and try again.")
232 );
233 return;
235 ui->signatureIn_VM->setValid(false);
236 ui->statusLabel_VM->setText(
237 tr("The signature did not match the message digest.") + QString(" ") +
238 tr("Please check the signature and try again.")
239 );
240 return;
242 ui->statusLabel_VM->setText(
243 QString("<nobr>") + tr("Message verification failed.") + QString("</nobr>")
244 );
245 return;
246 }
247}
248
250{
251 ui->addressIn_VM->clear();
252 ui->signatureIn_VM->clear();
253 ui->messageIn_VM->clear();
254 ui->statusLabel_VM->clear();
255
256 ui->addressIn_VM->setFocus();
257}
258
259bool SignVerifyMessageDialog::eventFilter(QObject *object, QEvent *event)
260{
261 if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::FocusIn)
262 {
263 if (ui->tabWidget->currentIndex() == 0)
264 {
265 /* Clear status message on focus change */
266 ui->statusLabel_SM->clear();
267
268 /* Select generated signature */
269 if (object == ui->signatureOut_SM)
270 {
271 ui->signatureOut_SM->selectAll();
272 return true;
273 }
274 }
275 else if (ui->tabWidget->currentIndex() == 1)
276 {
277 /* Clear status message on focus change */
278 ui->statusLabel_VM->clear();
279 }
280 }
281 return QDialog::eventFilter(object, event);
282}
283
285{
286 if (e->type() == QEvent::PaletteChange) {
287 ui->addressBookButton_SM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/address-book")));
288 ui->pasteButton_SM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/editpaste")));
289 ui->copySignatureButton_SM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/editcopy")));
290 ui->signMessageButton_SM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/edit")));
291 ui->clearButton_SM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
292 ui->addressBookButton_VM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/address-book")));
293 ui->verifyMessageButton_VM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/transaction_0")));
294 ui->clearButton_VM->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
295 }
296
297 QDialog::changeEvent(e);
298}
bool IsValidDestination(const CTxDestination &dest)
Check whether a CTxDestination corresponds to one with an address.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:140
Widget that shows a list of sending or receiving addresses.
@ ForSelection
Open address book to pick address.
void setModel(AddressTableModel *model)
const QString & getReturnValue() const
QIcon SingleColorIcon(const QString &filename) const
Colorize an icon (given filename) with the icon color.
bool eventFilter(QObject *object, QEvent *event) override
void setAddress_SM(const QString &address)
void changeEvent(QEvent *e) override
SignVerifyMessageDialog(const PlatformStyle *platformStyle, QWidget *parent)
const PlatformStyle * platformStyle
void setModel(WalletModel *model)
Ui::SignVerifyMessageDialog * ui
void setAddress_VM(const QString &address)
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:48
void refresh(bool pk_hash_only=false)
AddressTableModel * getAddressTableModel() const
interfaces::Wallet & wallet() const
Definition: walletmodel.h:138
UnlockContext requestUnlock()
virtual SigningResult signMessage(const std::string &message, const PKHash &pkhash, std::string &str_sig)=0
Sign message.
MessageVerificationResult MessageVerify(const std::string &address, const std::string &signature, const std::string &message)
Verify a signed message.
Definition: signmessage.cpp:26
CTxDestination DecodeDestination(const std::string &str, std::string &error_msg, std::vector< int > *error_locations)
Definition: key_io.cpp:299
Utility functions used by the Bitcoin Qt UI.
Definition: bitcoingui.h:58
QFont fixedPitchFont(bool use_embedded_font)
Definition: guiutil.cpp:100
void handleCloseWindowShortcut(QWidget *w)
Definition: guiutil.cpp:431
constexpr auto dialog_flags
Definition: guiutil.h:60
void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent)
Definition: guiutil.cpp:131
void setClipboard(const QString &str)
Definition: guiutil.cpp:668
SigningResult
Definition: signmessage.h:43
@ PRIVATE_KEY_NOT_AVAILABLE
@ OK
No error.
@ ERR_MALFORMED_SIGNATURE
The provided signature couldn't be parsed (maybe invalid base64).
@ ERR_INVALID_ADDRESS
The provided address is invalid.
@ ERR_ADDRESS_NO_KEY
The provided address is valid but does not refer to a public key.
@ ERR_NOT_SIGNED
The message was not signed with the private key of the provided address.
@ OK
The message verification was successful.
@ ERR_PUBKEY_NOT_RECOVERED
A public key could not be recovered from the provided signature and message.