visualize the GnuPG web of trust

北战南征 提交于 2019-12-04 08:59:55

问题


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?


回答1:


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


来源:https://stackoverflow.com/questions/5835191/visualize-the-gnupg-web-of-trust

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!