openssl 如何创建独立的签名文件?

发布于 2024-11-09 13:02:05 字数 179 浏览 0 评论 0原文

我想使用 openssh 对文件进行签名,然后将

  1. 文件、
  2. 公钥、
  3. 签名哈希

打包到一个独立文件中。在像 pem 这样的容器文件中。哦,我知道将被签名和验证的是文件,而不是独立的东西。

I'd like to use openssh to sign a file, and then pack

  1. the file
  2. the public key
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绅刃 2024-11-16 13:02:05

是的,我可以。我所要做的就是对

  1. 文件进行签名
  2. 将公钥放入文件中
  3. 将哈希值放入文件中

您可以将这样的信息添加到各种文件类型中。
您的文件本身也可以是存档,这样问题就可以解决。

要验证文件,首先提取(按照术语的正确含义:读取然后擦除)哈希值和密钥,然后验证。

Yes, I can. All I have to do to is

  1. Sign the file
  2. Put the public key in the file
  3. Put the hash in the file

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文