diff options
-rw-r--r-- | docs/whiteboard-object-model.dot | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/whiteboard-object-model.dot b/docs/whiteboard-object-model.dot index 7f0ba858..8ae1bddc 100644 --- a/docs/whiteboard-object-model.dot +++ b/docs/whiteboard-object-model.dot @@ -10,27 +10,27 @@ digraph gsstsig_systems { rotate=90; size="11,8.5"; splines=true; ratio=fill; - // black denotes stuff visible in left-to-right protocol + // Black denotes stuff visible in left-to-right protocol node [ color=black ]; - issuer; // red insert "rpp" (rpki publication point? huh?) - parent; // red insert ""url" and an icon that i think means "key" - repo; // red insert "url" and an icon that i think means "key" - ca; // red insert crl #, cert # + issuer; // Red insert "RPP" (RPKI publication point? Huh?) + parent; // Red insert "URL" and an icon that I think means "key" + repo; // Red insert "URL" and an icon that I think means "key" + ca; // Red insert "CRL #", "cert #" child; biz_sign; - // green denotes stuff created on the fly by the rpki engine + // Green denotes stuff created on the fly by the RPKI engine node [ color=green ]; - child_cert; // red footnote unique caid, cert serial -- not part of picture? + child_cert; // Red footnote "unique caid, cert serial" -- not part of picture? ca_key_pair; ee_certs; roa; latest_ca_cert; latest_crl; - // one->many mappings + // One->many mappings edge [ color=black, arrowtail=none, arrowhead=crow ]; child -> biz_sign; @@ -41,25 +41,25 @@ digraph gsstsig_systems { repo -> biz_sign; repo -> parent; - // many->many mappings + // Many->many mappings edge [ color=black, arrowtail=crow, arrowhead=crow ]; ca -> child; - // one->many mappings + // One->many mappings edge [ color=green, arrowtail=none, arrowhead=crow ]; ca -> ca_key_pair; child -> child_cert; - // one->one mappings + // One->one mappings edge [ color=green, arrowtail=none, arrowhead=none ]; ca_key_pair -> latest_ca_cert; ca_key_pair -> latest_crl; ee_certs -> roa; - // wiggly green one->many, look up edge config on man page + // One->many mappings that have something weird about them edge [ color=green, arrowtail=none, arrowhead=crow, style=dashed ]; ca_key_pair -> child_cert; |