aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/record
Commit message (Expand)AuthorAgeFilesLines
* Remove an OPENSSL_assert() and replace with a soft assert and checkMatt Caswell2017-02-161-2/+3
* Don't change the state of the ETM flags until CCS processingMatt Caswell2017-02-163-12/+12
* Fix crash in tls13_encMatt Caswell2017-02-081-1/+12
* Use contants for Chacha/Poly, redo algorithm expressions.Dr. Stephen Henson2017-02-081-4/+8
* Add CCM mode support for TLS 1.3Dr. Stephen Henson2017-02-081-16/+21
* Move TLSv1.3 Session Ticket processing into the state machineMatt Caswell2017-01-301-10/+0
* Move state machine knowledge out of the record layerMatt Caswell2017-01-302-139/+34
* Remove use of the SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS flagMatt Caswell2017-01-302-9/+10
* ChangeCipherSpec is not allowed in TLSv1.3Matt Caswell2017-01-301-1/+2
* Cleanup EVP_CIPH/EP_CTRL duplicate definesTodd Short2017-01-241-4/+0
* Replace div-spoiler hack with simpler codeAndy Polyakov2017-01-231-15/+10
* Always use TLSv1.0 for record layer version in TLSv1.3Matt Caswell2017-01-101-1/+1
* Temporarily ignore NewSessionTickets for TLS1.3Matt Caswell2017-01-101-0/+10
* Ensure the record sequence number gets incrementedMatt Caswell2017-01-101-0/+11
* Mark a HelloRequest record as read if we ignore itMatt Caswell2017-01-101-0/+5
* Fix a leak in SSL_clear()Matt Caswell2016-12-122-9/+9
* Change various repeated wr[someindex]/pkt[someindex] references to a pointerMatt Caswell2016-12-051-49/+63
* Various style fixes from the TLSv1.3 record changes reviewMatt Caswell2016-12-051-6/+2
* Change various repeated rr[someindex] references to a pointerMatt Caswell2016-12-051-65/+74
* Ensure compressdata is always initialisedMatt Caswell2016-12-051-2/+2
* Add a TLS1.3 TODO for the msg callbackMatt Caswell2016-12-051-0/+5
* Update the record layer to use TLSv1.3 style record constructionMatt Caswell2016-12-052-2/+57
* Convert TLS Record receipt to use PACKETMatt Caswell2016-12-051-11/+31
* Convert TLS record construction to use WPACKETMatt Caswell2016-12-052-43/+122
* Fix some style issues in the TLSv1.3 nonce construction codeMatt Caswell2016-11-291-1/+1
* Use the TLSv1.3 nonce constructionMatt Caswell2016-11-292-0/+105
* Make SSL_read and SSL_write return the old behaviour and document it.Kurt Roeckx2016-11-211-10/+4
* Fix missing SSL_IS_TLS13(s) usageMatt Caswell2016-11-171-1/+1
* Remove heartbeat supportRichard Levitte2016-11-131-15/+0
* Ignore the record version in TLS1.3Matt Caswell2016-11-071-2/+3
* Fix some style issues from libssl size_tify reviewMatt Caswell2016-11-041-3/+3
* Rename all "read" variables with "readbytes"Matt Caswell2016-11-043-16/+16
* Fix a shadowed variable declaration warning picked up by TravisMatt Caswell2016-11-041-3/+3
* Ensure SSL_DEBUG works following size_t changesMatt Caswell2016-11-041-1/+1
* Fix some bogus warnings about uninitialised variablesMatt Caswell2016-11-041-2/+2
* Remove a stray TODO that has already been fixedMatt Caswell2016-11-041-1/+0
* Provide some constant time functions for dealing with size_t valuesMatt Caswell2016-11-041-19/+19
* Fix misc size_t issues causing Windows warnings in 64 bitMatt Caswell2016-11-041-2/+2
* Convert the mac functions to just return 1 for success and 0 for failureMatt Caswell2016-11-043-25/+23
* Fix some ssl3_record code witch converstion to/from size_tMatt Caswell2016-11-041-15/+17
* Fix some missed size_t updatesMatt Caswell2016-11-043-7/+7
* Resolve some outstanding size_t related TODOsMatt Caswell2016-11-042-10/+4
* Convert some misc record layer functions for size_tMatt Caswell2016-11-043-45/+78
* Convert SSL3_RECORD_clear() and SSL3_RECORD_release() to size_tMatt Caswell2016-11-042-6/+6
* Convert libssl writing for size_tMatt Caswell2016-11-045-78/+90
* Further libssl size_t-ify of readingMatt Caswell2016-11-046-98/+119
* Convert record layer to use size_tMatt Caswell2016-11-044-42/+55
* Fail if an unrecognised record type is receivedMatt Caswell2016-11-021-7/+5
* Fix read_aheadMatt Caswell2016-11-021-12/+12
* A zero return from BIO_read()/BIO_write() could be retryableMatt Caswell2016-10-281-3/+15