visualize the GnuPG web of trust

前端 未结 1 1366
情书的邮戳
情书的邮戳 2021-02-04 01:40

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

相关标签:
1条回答
  • 2021-02-04 02:17

    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
    
    0 讨论(0)
提交回复
热议问题