summaryrefslogtreecommitdiff
path: root/ssl
Commit message (Expand)AuthorAgeFilesLines
* Remove some unused OSSL_RECORD_METHOD functionsMatt Caswell2022-10-275-28/+0
* Make SSL_alloc_buffers() and SSL_free_buffers() work againMatt Caswell2022-10-278-19/+108
* ssl_cipher_process_rulestr: don't read outside rule_str bufferTodd C. Miller2022-10-261-3/+1
* Fix 32-bit Windows issues related to QUIC Wire functionsRichard Levitte2022-10-252-17/+22
* Fix 32-bit Windows issues related to QUIC_STREAMRichard Levitte2022-10-251-3/+3
* Fix 32-bit Windows issues related to QUIC_ACKM / QUIC_CCRichard Levitte2022-10-254-16/+27
* Fix definitions of SHUT_RD and SHUT_WRRichard Levitte2022-10-251-0/+1
* Fix test_tls13_encryption()Matt Caswell2022-10-251-0/+3
* Fix coverity 1516101 deadcodeDaniel Fiala2022-10-241-1/+3
* stack: Do not add error if pop/shift/value accesses outside of the stackTomas Mraz2022-10-212-3/+2
* Fix coverity 1516094 uninitTodd Short2022-10-211-1/+4
* Fix coverity 1516093 tainted scalarTodd Short2022-10-211-2/+5
* Move freeing of BIOs as late as possibleMatt Caswell2022-10-201-5/+11
* Remove some redundant codeMatt Caswell2022-10-2020-689/+37
* Remove the old buffer management codeMatt Caswell2022-10-2014-174/+35
* Remove some TODO(RECLAYER) comments now that DTLS has been movedMatt Caswell2022-10-203-140/+8
* Remove dtls_write_recordsMatt Caswell2022-10-204-104/+2
* Move sequence increment to post encryption processingMatt Caswell2022-10-204-7/+22
* Remove supurious set of the record typeMatt Caswell2022-10-201-7/+0
* Consolidate sequence counter incrementing codeMatt Caswell2022-10-209-41/+43
* Ensure the record layer is responsible for calculating record overheadsMatt Caswell2022-10-205-24/+46
* Convert dtls_write_records to use standard record layer functionsMatt Caswell2022-10-208-164/+120
* Start using WPACKET in the dtls write records codeMatt Caswell2022-10-203-9/+24
* Use common tls_write_records() even for DTLSMatt Caswell2022-10-204-94/+18
* Convert dtls_write_records() to return the correct return valuesMatt Caswell2022-10-202-32/+27
* Use record layer buffers for DTLS rather than the buffers in s->rlayerMatt Caswell2022-10-203-22/+43
* Move dlts_write_records() function in the record layerMatt Caswell2022-10-202-247/+249
* Create a dlts_write_records() functionMatt Caswell2022-10-201-55/+76
* Remove create_empty_fragment from do_dtls1_write()Matt Caswell2022-10-203-14/+5
* Add `for_comp` flag when retrieving certs for compressionTodd Short2022-10-189-56/+51
* Update COMP_METHODTodd Short2022-10-182-5/+5
* Add support for compressed certificates (RFC8879)Todd Short2022-10-1817-18/+1194
* Fix sctp compile errorsslontis2022-10-184-8/+14
* Ensure that the key share group is allowed for our protocol versionMatt Caswell2022-10-122-2/+15
* Fix a return value in tls_default_read_nMatt Caswell2022-10-121-2/+7
* Introduce a step to prepare the BIO before writingMatt Caswell2022-10-127-19/+44
* Remove ktls specific code from tls_setup_write_buffersMatt Caswell2022-10-121-19/+16
* Add a post encryption processing stepMatt Caswell2022-10-127-68/+103
* Add a prepare for encryption stepMatt Caswell2022-10-127-44/+97
* Move record padding out of tls_common.cMatt Caswell2022-10-127-54/+79
* Don't check whether we are using KTLS before calling the cipher functionMatt Caswell2022-10-121-12/+9
* Defer record header preparation to the protocol methodsMatt Caswell2022-10-127-38/+76
* Abstract out the record type processingMatt Caswell2022-10-127-12/+34
* Defer write buffer and WPACKET allocation/initialisation to protocol codeMatt Caswell2022-10-127-116/+285
* Remove an old TODO from the codeMatt Caswell2022-10-121-1/+0
* Use the configured max_send_fragment value in the write record layerMatt Caswell2022-10-128-35/+67
* Remove enc_write_stateMatt Caswell2022-10-127-69/+19
* Remove some unneeded usage of the SSL_CONNECTION objectMatt Caswell2022-10-121-25/+14
* Remove most of the DTLS special casing from the write record codeMatt Caswell2022-10-121-74/+20
* Convert the TLSv1.3 crypto code to the new write record layerMatt Caswell2022-10-128-258/+48