History log of /openbsd-src/regress/lib/libssl/handshake/handshake_table.c (Results 1 – 18 of 18)
Revision Date Author Comments
# f49eea4e 01-Dec-2022 tb <tb@openbsd.org>

Refrain from printing SUCCESS in some of my tests

Silence is good. On failure, the regress framework will make it clear.


# 2f94b75c 08-Mar-2022 tb <tb@openbsd.org>

Some more c99 initializers for consistency and readability


# 96683f33 13-Oct-2021 tb <tb@openbsd.org>

Remove __dead from usage() to reduce the diff needed to build LibreSSL
on sortix.

Prompted by a diff by Jonas Termansen


# 278a4720 14-May-2020 tb <tb@openbsd.org>

move a #define after the last #include line


# dab6c58a 04-May-2020 tb <tb@openbsd.org>

Fix out-of-bounds access in tables[][] that was exposed in bluhm's
regress on i386 after inoguchi moved some symbols to const.

ok inoguchi jsing deraadt


# e1330927 22-Apr-2020 jsing <jsing@openbsd.org>

Revise regress to match state transition changes.


# ed95719c 10-Mar-2020 jsing <jsing@openbsd.org>

Update to follow handshake enum removal.


# 397bafb9 05-Apr-2019 tb <tb@openbsd.org>

Add SERVER_HELLO_RETRY state


# 9a54de93 13-Feb-2019 tb <tb@openbsd.org>

one more error message that should go to stderr


# 9467d223 27-Jan-2019 tb <tb@openbsd.org>

zap a commented out line. 0RTT will need more thought than
just uncommenting this.


# 7a668e62 27-Jan-2019 tb <tb@openbsd.org>

refactor and clean up the code generating dot output.


# a6ee115c 25-Jan-2019 tb <tb@openbsd.org>

print errors to stderr


# c4b3591a 24-Jan-2019 tb <tb@openbsd.org>

Add code to visualize the state machine. Both the state machine and the
output will have to be tweaked, but this may as well happen in-tree. To
try it, pkg_add graphviz and run 'make handshake.svg' i

Add code to visualize the state machine. Both the state machine and the
output will have to be tweaked, but this may as well happen in-tree. To
try it, pkg_add graphviz and run 'make handshake.svg' in this directory.

Committing early so Bob's followers can play.

show more ...


# f1baa6d0 24-Jan-2019 tb <tb@openbsd.org>

set the NEGOTIATED flag in the flags argument rather than
squeezing it into the table.


# 8d6bcc7a 23-Jan-2019 tb <tb@openbsd.org>

make whitespace inside curlies consistent; sort function prototypes.


# 3d034219 23-Jan-2019 tb <tb@openbsd.org>

Rename NUM_HANDSHAKE to handshake_count and make it a variable
so it can be used from regress. Update regress accordingly.
Make sure the print target generates the entire table as it
currently is in

Rename NUM_HANDSHAKE to handshake_count and make it a variable
so it can be used from regress. Update regress accordingly.
Make sure the print target generates the entire table as it
currently is in tls13_handshake.c

discussed with beck and jsing
ok jsing

show more ...


# c21137ed 23-Jan-2019 tb <tb@openbsd.org>

incorrrect spelling


# c4d50951 23-Jan-2019 tb <tb@openbsd.org>

Add a regression test that builds up the handshake state table
from graph information and cross-checks it against the state
table in tls13_handshake.c.

with help from jsing