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
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.
gpg --list-sigs
Use gpg, sig2dot, and dot like this:
gpg --list-sigs | sig2dot.pl > gpg.dot dot -Tps gpg.dot > gpg.ps evince gpg.ps