web3.shh.getPrivateKey - 返回私钥

优质
小牛编辑
127浏览
2023-12-01

返回指定ID密钥对的私钥。

调用:

web3.shh.getPrivateKey(id, [callback])

参数:

  • id:String - 密钥对ID,由shh.newKeyPair()或shh.addPrivateKey()返回
  • callback:Function - 可选的回调函数,其第一个参数为错误对象,第二个参数为返回结果

返回值:

String - 成功则返回指定密钥对的私钥,否则返回错误信息

示例代码:

web3.shh.getPrivateKey('3e22b9ffc2387e18636e0a3d0c56b023264c16e78a2adcba1303cefc685e610f')
.then(console.log);
> "0x234234e22b9ffc2387e18636e0534534a3d0c56b0243567432453264c16e78a2adc"