Message-Signing

如何驗證已簽名的消息?

  • February 18, 2015

我可以使用標準客戶端發送簽名消息,但是如果我在論壇中看到簽名消息,我該如何驗證它?

我知道這還沒有在標準客戶端的 GUI 中實現。

根據這個 bitcointalk thread,它可以通過JSON-RPC API 完成: 程式碼:

verifymessage [address] [signature] [message]

此功能也包含在軍械庫客戶端的 GUI 中:

使用 Armory 驗證簽名塊(在離線模式下工作正常):

Open Armory, go to the menu, "Tools"-->"Message Signing"
Click on "Import Signature Block" at the bottom of the screen.
Paste the signature block, and click "Okay"
Address will be checked against public key, public key checked against signature for the given message

這些都不需要區塊鏈,所以如果你在一個無法正常執行 Armory 的系統上,你只需要使用“–noblockchain”選項執行。這使您可以在沒有軍械庫錢包的情況下驗證軍械庫簽名塊!如果你有興趣,試試這個:(如有必要,獲取軍械庫)

引用自:https://bitcoin.stackexchange.com/questions/4137