mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
567 B
Plaintext
22 lines
567 B
Plaintext
4 years ago
|
# MSC Sequence Diagram Example: TLS Handshake Transaction
|
||
|
|
||
|
msc {
|
||
|
# Chart Options
|
||
|
arcgradient = "10";
|
||
|
|
||
|
# Entities
|
||
|
a [ label = "Client" ], b [ label = "Server"];
|
||
|
|
||
|
# Message Flow
|
||
|
a =>> b [ label = "ClientHello"];
|
||
|
b =>> a [ label = "ServerHello"];
|
||
|
b =>> a [ label = "ServerCertificate"];
|
||
|
b =>> a [ label = "ServerHello Done"];
|
||
|
a =>> b [ label = "ClientCertificate"];
|
||
|
a =>> b [ label = "ClientKeyExchange"];
|
||
|
a =>> b [ label = "Finished" ];
|
||
|
b =>> a [ label = "Finished" ];
|
||
|
|
||
|
--- [ label = "Transaction Completed" ];
|
||
|
}
|