diff options
author | Rob Austein <sra@hactrn.net> | 2014-04-07 21:25:15 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-04-07 21:25:15 +0000 |
commit | 440687c9d13a28b902bd9594f88eea6f42be686e (patch) | |
tree | d239056a195315c9c55b3c67103f9b1771aab0c2 /doc/pubd-bpki.dot | |
parent | 8f81bbe3c5f76eda26bea1cf4b455de8faec0449 (diff) |
Whack test code to work with new tree, fix relaxng.py.
svn path=/branches/tk685/; revision=5765
Diffstat (limited to 'doc/pubd-bpki.dot')
-rw-r--r-- | doc/pubd-bpki.dot | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/pubd-bpki.dot b/doc/pubd-bpki.dot new file mode 100644 index 00000000..44ad8a90 --- /dev/null +++ b/doc/pubd-bpki.dot @@ -0,0 +1,42 @@ +// $Id$ + +// Color code: +// Black: Operating entity +// Red: Cross-certified client +// +// Shape code: +// Octagon: TA +// Diamond: CA +// Record: EE + +digraph bpki_pubd { + splines = true; + size = "14,14"; + node [ fontname = Times, fontsize = 9 ]; + + // Operating entity + node [ color = black, fontcolor = black, shape = record ]; + TA [ shape = octagon, label = "BPKI TA" ]; + pubd [ label = "pubd|{HTTPS server|CMS}" ]; + ctl [ label = "Control|{HTTPS client|CMS}" ]; + + // Clients + node [ color = red, fontcolor = red, shape = diamond ]; + Alice_CA; + Bob_CA; + node [ color = red, fontcolor = red, shape = record ]; + Alice_EE [ label = "Alice\nEE|{HTTPS client|CMS}" ]; + Bob_EE [ label = "Bob\nEE|{HTTPS client|CMS}" ]; + + edge [ color = black, style = dotted ]; + TA -> pubd; + TA -> ctl; + + edge [ color = black, style = solid ]; + TA -> Alice_CA; + TA -> Bob_CA; + + edge [ color = red, style = solid ]; + Alice_CA -> Alice_EE; + Bob_CA -> Bob_EE; +} |