接收端ECDSA解密过程
Decryption process of ECDSA from receiver's end
我在 Internet 上看到了很多关于如何从发送方的角度实施 ECDSA 的参考资料。这是通过签名和验证来加密消息。从接收者的角度来看,我没有找到任何相同的实现。 here. But I find it hard to understand. I have seen this 提到的解密过程我有一个参考。它很容易在 C# 中实现,但只完成签名。谁能告诉我用 C# 实现的从接收方解密 ECDSA 的任何示例?
Maarten Bodewes, in 对问题说:
"That is the encryption of the message by signing it and it's validation." I think that this is simply confusion. Signature generation is not signing with a private key. Transactions need to be put in the ledger, not encrypted. Usually this only comes up with RSA as ECDSA is just signature generation; it doesn't have an encryption equivalent.
我在 Internet 上看到了很多关于如何从发送方的角度实施 ECDSA 的参考资料。这是通过签名和验证来加密消息。从接收者的角度来看,我没有找到任何相同的实现。 here. But I find it hard to understand. I have seen this 提到的解密过程我有一个参考。它很容易在 C# 中实现,但只完成签名。谁能告诉我用 C# 实现的从接收方解密 ECDSA 的任何示例?
Maarten Bodewes, in
"That is the encryption of the message by signing it and it's validation." I think that this is simply confusion. Signature generation is not signing with a private key. Transactions need to be put in the ledger, not encrypted. Usually this only comes up with RSA as ECDSA is just signature generation; it doesn't have an encryption equivalent.