diff options
-rw-r--r-- | docs/bpki.dot | 52 | ||||
-rw-r--r-- | docs/bpki.pdf | bin | 0 -> 3741 bytes |
2 files changed, 52 insertions, 0 deletions
diff --git a/docs/bpki.dot b/docs/bpki.dot new file mode 100644 index 00000000..df67f187 --- /dev/null +++ b/docs/bpki.dot @@ -0,0 +1,52 @@ +// $Id$ +// +// Color code: +// Black: hosting entity +// Blue: hosted entity +// Red: peers +// +// Shape code: +// Diamond: TA +// Box: CA +// Triangle: EE + +digraph bpki { + rotate=90; size="11,8.5"; splines=true; ratio=fill; + node [ shape=triangle ]; + + // Hosting entity + node [ color=black ]; + TA [ shape=diamond ]; + RPKID; + IRDBD; + IRBE; + + // Hosted entities + node [ color=blue ]; + Alice [ shape=box ]; + Bob [ shape=box ]; + Alice_EE; + Bob_EE; + + // Peers + node [ color=red ]; + Carol [ shape=box ]; + Dave [ shape=box ]; + + edge [ color=black ]; + TA -> RPKID; + TA -> IRDBD; + TA -> IRBE; + TA -> Alice; + TA -> Bob; + + edge [ color=blue ]; + Alice -> Alice_EE; + Bob -> Bob_EE; + Alice -> Dave; + Bob -> Carol; +} + +// Local Variables: +// compile-command: "dot -Tps2 bpki.dot | ps2pdf - bpki.pdf" +// End: diff --git a/docs/bpki.pdf b/docs/bpki.pdf Binary files differnew file mode 100644 index 00000000..ecf651d3 --- /dev/null +++ b/docs/bpki.pdf |