blob: 44ad8a90326834f1f512eddbf3344b06549e35bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
}
|