https://github.com/awslabs/s2n
Raw File
Tip revision: b956eab5f1676a961b16cb060d41c3844e118af2 authored by Lindsay Stewart on 01 February 2022, 21:58:33 UTC
Store TLS1.3 transcript hash digests rather than full hash state (#3188)
Tip revision: b956eab
STATE-MACHINE.md
# s2n-tls state machine graphs

## TLS 1.2 State Machine

![TLS 1.2 State Machine](images/tls12_state_machine.svg)

## TLS 1.3 State Machine
![TLS 1.3 State Machine](images/tls13_state_machine.svg)

### The above graphs can be generated by running

```
# sudo apt install graphviz if needed

make STATE_MACHINE_GRAPHS=1
```
back to top