openssl 如何创建独立的签名文件?
我想使用 openssh 对文件进行签名,然后将
- 文件、
- 公钥、
- 签名哈希
打包到一个独立文件中。在像 pem 这样的容器文件中。哦,我知道将被签名和验证的是文件,而不是独立的东西。
I'd like to use openssh to sign a file, and then pack
- the file
- the public key
- the signature hash
Into one self-contained file. In a container file like pem. Oh, and I understand that what will be signed and verifiable is the file, not the self-contained thingie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我可以。我所要做的就是对
您可以将这样的信息添加到各种文件类型中。
您的文件本身也可以是存档,这样问题就可以解决。
要验证文件,首先提取(按照术语的正确含义:读取然后擦除)哈希值和密钥,然后验证。
Yes, I can. All I have to do to is
You can add info like this to all kinds of file types.
Your file can also be an archive itself, in witch case the problem is solved.
To verify the file, first extract (in the proper sense of the term : Read then erase) the hash and the key, then verify.