aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-04-25 16:56:30 +0000
committerRob Austein <sra@hactrn.net>2008-04-25 16:56:30 +0000
commit3a258423667a6b860bf930271f84aaaa958e06b8 (patch)
tree3666ba73a5cdd5359b3219a30a6f6d865515fb8f /docs
parentf0c3c992aa776800ee68edaa3882053499855c25 (diff)
First cut at picture showing BPKI model.
svn path=/docs/bpki.dot; revision=1706
Diffstat (limited to 'docs')
-rw-r--r--docs/bpki.dot52
-rw-r--r--docs/bpki.pdfbin0 -> 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
new file mode 100644
index 00000000..ecf651d3
--- /dev/null
+++ b/docs/bpki.pdf
Binary files differ