-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request:支持钱包加密和解密消息 #1
Comments
如果 https://secret.gl 作为主流加密消息工具,是否存在容易被第三方嗅探的问题,一当被恶意第三方应用嗅探即可访问密文信息,而真正应该访问该信息的人无法访问,信息也被窃取。 |
关于内容安全
有可能。但
实际上分发出的 关于非对称加密非常不错的想法。可以在创建
我前段时间也考虑过一些想法,比如一些链支持通过地址在链上获取上链的公钥, 对所有人: |
关于非对称加密部分的回复
|
调研了一会,类似 eth sign 的方法只能生成签名,本质上是信息摘要,eth 相关的 SDK 或者 EIP 规范都是签名与验证签名,并不能隐匿消息的来源或者加密消息。 如果不能通过 |
Try Time[4]. |
I'm Ōnō. |
背景
思路
借助 Crypto Wallet 常见的私钥功能,不必另外维护管理私钥,即可让区块链用户可以在钱包中完成加密和解密消息工作。
signMessage
参考 ether.js 的 Signing 方法,我们可以考虑使用 signMessage or signTypeData 让 Bob 签署特定信息,以便 Alice 验证。
参考:The Magic of Digital Signatures on Ethereum
非对称加密
常见 RSA 签名处理,但我不确定是否有更好的方法。
The text was updated successfully, but these errors were encountered: