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.
suricata/doc/devguide/extending/app-layer/img/TlsHandshake.msc

22 lines
567 B
Plaintext

# 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" ];
}