Cryptography

如何使用公鑰解密

  • April 26, 2018

任何人都可以使用公鑰解密密文嗎?據我所知,我們只能使用私鑰解密,但在這個 RLPx 文件中,這行是什麼意思?

Receiver receives the initiator handshake and decrypts it with its own public key.

他們在談論驗證簽名嗎?

這似乎是一個錯誤。解密使用節點自己的私鑰。請參閱此處的程式碼(此處呼叫實際解密),引用上面的註釋 4 行:

// prv is the local client's private key.

引用自:https://ethereum.stackexchange.com/questions/46747