| Commit message (Expand) | Author | Age | Files | Lines |
* | This is errata/6.8/013_libressl.patch.siglibressl-v3.2.4 | tb | 2021-02-03 | 1 | -7/+8 |
* | Call dtls1_hm_fragment_free() from dtls1_drain_fragments() | jsing | 2020-09-26 | 1 | -3/+3 |
* | Have dtls1_hm_fragment_new() call dtls1_hm_fragment_free() on failure. | jsing | 2020-09-26 | 1 | -26/+17 |
* | Use 0 instead of 0x00 for memset() calls. | jsing | 2020-08-11 | 1 | -4/+4 |
* | "non-existant" is one of those words that don't exist, so use "non-existent" | phessler | 2019-02-10 | 1 | -2/+2 |
* | Clean up and simplify the handshake transcript code. | jsing | 2018-11-08 | 1 | -3/+3 |
* | Use the newer/more sensible names for EVP_MD_CTX_* functions. | jsing | 2018-09-05 | 1 | -2/+2 |
* | Nuke ssl_pending/ssl_shutdown function pointers. | jsing | 2018-08-30 | 1 | -10/+1 |
* | Dedup DTLS header writing code and convert to CBB. | jsing | 2018-08-27 | 1 | -25/+35 |
* | Convert ssl3_send_change_cipher_spec() to use CBB and make it handle DTLS, | jsing | 2017-10-08 | 1 | -39/+2 |
* | Move state from ssl->internal to the handshake structure. | beck | 2017-05-07 | 1 | -4/+4 |
* | Drop the second argument of dtls1_set_message_header() and make it a void | jsing | 2017-03-04 | 1 | -6/+4 |
* | Change SSLerror() back to taking two args, with the first one being an SSL *. | beck | 2017-02-07 | 1 | -9/+9 |
* | Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the ugly | beck | 2017-01-26 | 1 | -15/+8 |
* | Send the error function codes to rot in the depths of hell where they belong | beck | 2017-01-26 | 1 | -9/+9 |
* | Split most of SSL_METHOD out into an internal variant, which is opaque. | jsing | 2017-01-23 | 1 | -7/+7 |
* | send state and rstate from ssl_st into internal. There are accessors | beck | 2017-01-23 | 1 | -4/+4 |
* | Move a large part of ssl_st into internal, so we can see what squeals. | beck | 2017-01-23 | 1 | -70/+70 |
* | move the callbacks from ssl_st to internal | beck | 2017-01-23 | 1 | -10/+10 |
* | Move most of the SSL3_STATE fields to internal - the ones that remain are | jsing | 2017-01-22 | 1 | -18/+18 |
* | Move most of DTLS1_STATE to internal. | beck | 2017-01-22 | 1 | -58/+58 |
* | Now that ssl3_send_{client,server}_certificate() are using the common | jsing | 2016-12-06 | 1 | -75/+1 |
* | Make sure stdio functions don't end up in the library, from miod@ | beck | 2016-03-06 | 1 | -1/+7 |
* | Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a | jsing | 2015-09-11 | 1 | -3/+3 |
* | Replace dtls1_send_finished() with ssl3_send_finished() - they're now | jsing | 2015-09-11 | 1 | -42/+1 |
* | Convert dtls1_send_finished() and ssl3_send_finished() to | jsing | 2015-09-11 | 1 | -12/+5 |
* | Remove support for DTLS_BAD_VER. We do not support non-standard and | jsing | 2015-09-10 | 1 | -13/+5 |
* | Allow *_free() functions in libssl to handle NULL input. | doug | 2015-07-19 | 1 | -1/+3 |
* | Convert dtls1_get_message_header to CBS and change to int. | doug | 2015-07-18 | 1 | -12/+32 |
* | Jettison DTLS over SCTP. | jsing | 2015-02-09 | 1 | -16/+1 |
* | Provide functions for starting, finishing and writing SSL handshake | jsing | 2014-12-14 | 1 | -1/+3 |
* | Sort and group includes. | jsing | 2014-11-16 | 1 | -3/+5 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-18 | 1 | -2/+1 |
* | Fix CVE-2014-3507, avoid allocating and then leaking a fresh fragment | guenther | 2014-08-08 | 1 | -2/+7 |
* | Fix CVE-2014-3506, DTLS handshake message size checks. From | guenther | 2014-08-07 | 1 | -16/+22 |
* | Oops, revert changes commited by mistake. The previous commit was supposed | miod | 2014-08-07 | 1 | -2/+3 |
* | When you expect a function to return a particular value, don't put a comment | miod | 2014-08-07 | 1 | -3/+2 |
* | decompress libssl. ok beck jsing | tedu | 2014-07-10 | 1 | -6/+1 |
* | KNF comments, reflowing and moving out of the middle of argument lists in | guenther | 2014-07-10 | 1 | -45/+84 |
* | Memory leak in error path of the day, from clang via dhill@bitrig; | miod | 2014-07-02 | 1 | -2/+3 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
* | Do not recurse when a 'Hello Request' message is received while getting | jsing | 2014-06-05 | 1 | -1/+2 |
* | Avoid a buffer overflow that can be triggered by sending specially crafted | jsing | 2014-06-05 | 1 | -1/+7 |
* | BUF_MEM_grow_clean() takes a size_t as the size argument. Remove false comments | miod | 2014-05-31 | 1 | -1/+1 |
* | remove some #if 0 code. we don't need any more reminders that we're using | tedu | 2014-05-30 | 1 | -49/+0 |
* | There is no point in checking if a pointer is non-NULL before calling free, | jsing | 2014-05-28 | 1 | -6/+3 |
* | Stop pulling pqueue.h into ssl_locl.h since only a small part of libssl | jsing | 2014-05-22 | 1 | -0/+2 |
* | In dtls1_reassemble_fragment() and dtls1_process_out_of_seq_message(), in case | miod | 2014-05-18 | 1 | -7/+3 |
* | Avoid a potential null pointer dereference by checking that we actually | jsing | 2014-04-30 | 1 | -0/+2 |
* | More KNF. | jsing | 2014-04-24 | 1 | -92/+122 |