使用 BouncyCastle 验证 PgP 加密和签名文件
我正在 c# 中的 bouncycastle 库的帮助下使用 PgP 签署文档。如何验证已签名的文档以确保其由正确的人签名,甚至识别签名者。
我正在使用 问题,进行一些小的修改来签署文件。密钥是自行生成的。
编辑: 我可以使用此 链接。然而,在加密和签名的文件中,我无法获取用于验证的 PgpSignatureList
。然而,我能够获得 LiteralData 和解密工作。
问候
I'm signing a document using PgP with the help of the bouncycastle library in c#. How do I verify a signed document to ensure that it is signed by the correct person or to even identify who signed it.
I'm using the code from the question with some little modifications to sign the file. The keys are self generated.
Edit:
I'm able to verify a signed file using information from this link. In an encrypted and signed file, I'm however unable to get the PgpSignatureList
to use for verification. I'm however able to get the LiteralData and decryption works.
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Bouncy Castle C# 项目包含 等效示例。
The Bouncy Castle C# project contains an equivalent example.