History log of /openbsd/regress/lib/libssl/key_schedule/key_schedule.c (Results 1 – 10 of 10)
Revision Date Author Comments
# c9675a23 26-Nov-2022 tb <tb@openbsd.org>

Make internal header file names consistent

Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names
used for internal headers. Move all these headers we inherited from
OpenSSL to *_l

Make internal header file names consistent

Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names
used for internal headers. Move all these headers we inherited from
OpenSSL to *_local.h, reserving the name *_internal.h for our own code.
Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h.
constant_time_locl.h is moved to constant_time.h since it's special.

Adjust all .c files in libcrypto, libssl and regress.

The diff is mechanical with the exception of tls13_quic.c, where
#include <ssl_locl.h> was fixed manually.

discussed with jsing,
no objection bcook

show more ...


# 2a57cb45 18-Nov-2019 beck <beck@openbsd.org>

fix printing of client app secret


# 81a25c1e 18-Nov-2019 beck <beck@openbsd.org>

Add regress for the updating of sever and client application secrets


# f24fff32 09-May-2019 claudio <claudio@openbsd.org>

Proper prototype for main(). Make sparc64 happier.


# cc732f8b 13-Nov-2018 beck <beck@openbsd.org>

Just err if we can't create secrets


# cb2e5b75 10-Nov-2018 tb <tb@openbsd.org>

fix a leak reported by Ben L (bobsayshilol () live ! co ! uk)


# d3914aee 10-Nov-2018 beck <beck@openbsd.org>

More regress all the way to exporter_master


# 2e60af7e 10-Nov-2018 beck <beck@openbsd.org>

Fix last of the empty hash nonsense
ok jsing@


# caf5f745 09-Nov-2018 jsing <jsing@openbsd.org>

Update key schedule regress to match API changes.


# af2a35e9 07-Nov-2018 beck <beck@openbsd.org>

Add initial TLS 1.3 key schedule support with basic regress tests
ok jsing@ tb@