#
0fe48b23 |
| 22-Jul-2024 |
jsing <jsing@openbsd.org> |
Revise regress to match cipher suite values change.
|
#
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 ...
|
#
f9bfa6e5 |
| 07-Jun-2022 |
tb <tb@openbsd.org> |
Fix format strings: change %i, %li, %lli to %d, %ld, %lld and switch to %zu for master_key_length, session_id_length and sid_ctx_length, which are now size_t.
|
#
f060e1a2 |
| 11-Jan-2022 |
jsing <jsing@openbsd.org> |
Revise for peer_cert.
|
#
5aa1ef6f |
| 23-Oct-2021 |
jsing <jsing@openbsd.org> |
Revise regress for tlsext_tick_lifetime_hint changing type.
|
#
8d969e1f |
| 30-Jun-2021 |
jsing <jsing@openbsd.org> |
Pull in ssl_locl.h to allow for move of struct ssl_session_st.
|
#
29ec4e84 |
| 22-Mar-2021 |
tb <tb@openbsd.org> |
Plug a few memory leaks reported by Ilya Shipitsin
|
#
9bb2b706 |
| 26-Dec-2016 |
jsing <jsing@openbsd.org> |
Extend regress to include a peer certificate in the session.
|
#
301a5e8b |
| 26-Dec-2016 |
jsing <jsing@openbsd.org> |
Ensure that after an i2d_SSL_SESSION() call, the passed pointer now points to the end of the buffer.
|
#
31aebeb5 |
| 21-Dec-2016 |
jsing <jsing@openbsd.org> |
Ensure negative time/timeout are handled appropriately.
|
#
eb91b732 |
| 07-Dec-2014 |
bcook <bcook@openbsd.org> |
remove duplicate initialization of .sid_ctx in test
|
#
56538526 |
| 16-Jul-2014 |
miod <miod@openbsd.org> |
Fix tlsext_tick_lifetime_hint value in test #2 to make sure the (tlsext_tick_lifetime_hint > 0) test also passes on 32-bit platforms (tlsext_tick_lifetime_hint is a long).
|
#
ca994c7d |
| 13-Jul-2014 |
jsing <jsing@openbsd.org> |
Add a regress test for the ASN1 handling of SSL session tickets.
|