可视化 GnuPG 信任网络

发布于 2024-11-03 19:47:44 字数 126 浏览 0 评论 0原文

有没有办法可视化 GnuPG 信任网络?我的(或任何其他)密钥在中间,签名密钥在第一个圆圈中,信任人的信任人在下一个圆圈中,依此类推?

如果没有这样的东西,我应该能够根据我的 lokal 密钥环的调号构建类似的东西,对吧?

Is there some way to visualise the GnuPG web of trust? With my (or any other) key in the middle, with the signed keys in the first circle, the trustpersons' trustpersons in the next and so on?

If there is nothing like that, I should be able to build something like that based on the key signatures from my lokal keyring, right?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情泪▽动烟 2024-11-10 19:47:44

一种方法是将 gpg --list-sigs 的输出转换为 dot 文件,可以使用 graphviz 工具呈现为图形。

使用gpgsig2dotdot 像这样:

gpg --list-sigs | sig2dot.pl > gpg.dot
dot -Tps gpg.dot > gpg.ps
evince gpg.ps

One approach is to convert the output of gpg --list-sigs to a dot file that can be rendered into a graph with the graphviz tools.

Use gpg, sig2dot, and dot like this:

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