summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_both.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* This is errata/6.8/013_libressl.patch.siglibressl-v3.2.4tb2021-02-031-7/+8
* Call dtls1_hm_fragment_free() from dtls1_drain_fragments()jsing2020-09-261-3/+3
* Have dtls1_hm_fragment_new() call dtls1_hm_fragment_free() on failure.jsing2020-09-261-26/+17
* Use 0 instead of 0x00 for memset() calls.jsing2020-08-111-4/+4
* "non-existant" is one of those words that don't exist, so use "non-existent"phessler2019-02-101-2/+2
* Clean up and simplify the handshake transcript code.jsing2018-11-081-3/+3
* Use the newer/more sensible names for EVP_MD_CTX_* functions.jsing2018-09-051-2/+2
* Nuke ssl_pending/ssl_shutdown function pointers.jsing2018-08-301-10/+1
* Dedup DTLS header writing code and convert to CBB.jsing2018-08-271-25/+35
* Convert ssl3_send_change_cipher_spec() to use CBB and make it handle DTLS,jsing2017-10-081-39/+2
* Move state from ssl->internal to the handshake structure.beck2017-05-071-4/+4
* Drop the second argument of dtls1_set_message_header() and make it a voidjsing2017-03-041-6/+4
* Change SSLerror() back to taking two args, with the first one being an SSL *.beck2017-02-071-9/+9
* Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the uglybeck2017-01-261-15/+8
* Send the error function codes to rot in the depths of hell where they belongbeck2017-01-261-9/+9
* Split most of SSL_METHOD out into an internal variant, which is opaque.jsing2017-01-231-7/+7
* send state and rstate from ssl_st into internal. There are accessorsbeck2017-01-231-4/+4
* Move a large part of ssl_st into internal, so we can see what squeals.beck2017-01-231-70/+70
* move the callbacks from ssl_st to internalbeck2017-01-231-10/+10
* Move most of the SSL3_STATE fields to internal - the ones that remain arejsing2017-01-221-18/+18
* Move most of DTLS1_STATE to internal.beck2017-01-221-58/+58
* Now that ssl3_send_{client,server}_certificate() are using the commonjsing2016-12-061-75/+1
* Make sure stdio functions don't end up in the library, from miod@beck2016-03-061-1/+7
* Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of ajsing2015-09-111-3/+3
* Replace dtls1_send_finished() with ssl3_send_finished() - they're nowjsing2015-09-111-42/+1
* Convert dtls1_send_finished() and ssl3_send_finished() tojsing2015-09-111-12/+5
* Remove support for DTLS_BAD_VER. We do not support non-standard andjsing2015-09-101-13/+5
* Allow *_free() functions in libssl to handle NULL input.doug2015-07-191-1/+3
* Convert dtls1_get_message_header to CBS and change to int.doug2015-07-181-12/+32
* Jettison DTLS over SCTP.jsing2015-02-091-16/+1
* Provide functions for starting, finishing and writing SSL handshakejsing2014-12-141-1/+3
* Sort and group includes.jsing2014-11-161-3/+5
* Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().jsing2014-10-181-2/+1
* Fix CVE-2014-3507, avoid allocating and then leaking a fresh fragmentguenther2014-08-081-2/+7
* Fix CVE-2014-3506, DTLS handshake message size checks. Fromguenther2014-08-071-16/+22
* Oops, revert changes commited by mistake. The previous commit was supposedmiod2014-08-071-2/+3
* When you expect a function to return a particular value, don't put a commentmiod2014-08-071-3/+2
* decompress libssl. ok beck jsingtedu2014-07-101-6/+1
* KNF comments, reflowing and moving out of the middle of argument lists inguenther2014-07-101-45/+84
* Memory leak in error path of the day, from clang via dhill@bitrig;miod2014-07-021-2/+3
* tags as requested by miod and teduderaadt2014-06-121-1/+1
* Do not recurse when a 'Hello Request' message is received while gettingjsing2014-06-051-1/+2
* Avoid a buffer overflow that can be triggered by sending specially craftedjsing2014-06-051-1/+7
* BUF_MEM_grow_clean() takes a size_t as the size argument. Remove false commentsmiod2014-05-311-1/+1
* remove some #if 0 code. we don't need any more reminders that we're usingtedu2014-05-301-49/+0
* There is no point in checking if a pointer is non-NULL before calling free,jsing2014-05-281-6/+3
* Stop pulling pqueue.h into ssl_locl.h since only a small part of libssljsing2014-05-221-0/+2
* In dtls1_reassemble_fragment() and dtls1_process_out_of_seq_message(), in casemiod2014-05-181-7/+3
* Avoid a potential null pointer dereference by checking that we actuallyjsing2014-04-301-0/+2
* More KNF.jsing2014-04-241-92/+122