| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | In ssl.h rev. 1.167 and s3_lib.c rev. 1.188, jsing@ provided | schwarze | 2020-01-02 | 1 | -4/+21 |
* | Revise SSL_CTX_get_extra_chain_certs() to match OpenSSL behaviour. | jsing | 2020-01-02 | 2 | -8/+23 |
* | Provide TLSEXT_TYPE_* aliases for TLS 1.3. | jsing | 2020-01-02 | 1 | -1/+10 |
* | spelling; from bryan stenson | jmc | 2019-12-19 | 1 | -3/+3 |
* | Fix typo: ECHD -> ECDH. | tb | 2019-12-03 | 1 | -4/+4 |
* | Add support for TLS 1.3 post handshake messages and key updating. | beck | 2019-11-26 | 3 | -20/+217 |
* | Add accessors to change the buffer in a handshake message. | beck | 2019-11-20 | 3 | -3/+20 |
* | Add prototypes for the functions that update application secrets | beck | 2019-11-18 | 1 | -1/+3 |
* | Provide a clean interface for sending TLSv1.3 alerts. | jsing | 2019-11-18 | 2 | -5/+17 |
* | Change tls13_record_layer_phh() to take a CBS as this avoids ownership | jsing | 2019-11-17 | 2 | -8/+6 |
* | Correct update of application traffic secrets to use an empty context | beck | 2019-11-17 | 1 | -3/+7 |
* | Bring back the ssl_shutdown internal method pointer. | jsing | 2019-11-17 | 3 | -4/+21 |
* | Add a reference for the non-standard post-handshake handshake (PHH). | tb | 2019-11-17 | 1 | -2/+2 |
* | Ensure that we are never operating in plaintext mode once the handshake | jsing | 2019-11-17 | 1 | -1/+7 |
* | Provide framework for sending alerts and post-handshake handshake messages. | jsing | 2019-11-17 | 2 | -15/+174 |
* | indent with a tab instead of 8 spaces | tb | 2019-11-17 | 1 | -2/+2 |
* | Move the TLSv1.3 server message handling stubs. | jsing | 2019-11-17 | 2 | -125/+125 |
* | Add the initial framework for the TLSv1.3 server. | jsing | 2019-11-17 | 3 | -3/+84 |
* | tls13_connect() should be static. | jsing | 2019-11-17 | 1 | -2/+2 |
* | Fix backoff to legacy when in client auth mode. | beck | 2019-11-17 | 1 | -2/+2 |
* | Drop back to the legacy tls method if we are doing client authenticaiton | beck | 2019-11-17 | 1 | -1/+7 |
* | Separate the callbacks for recieved and completed post handshake messages | beck | 2019-11-17 | 3 | -10/+22 |
* | Revert previous deduplication diff, I broke portable in a strange way. | beck | 2019-11-16 | 1 | -47/+58 |
* | Deduplicate some extension processing code. | beck | 2019-11-15 | 1 | -58/+47 |
* | Add missing cross-reference to NOTES section. | millert | 2019-11-14 | 1 | -3/+3 |
* | Allow ip addresses as argument to SSL_set1_host() but be careful to not | otto | 2019-11-04 | 1 | -2/+14 |
* | Bump libcrypto, libssl and libtls minors due to symbol additions. | jsing | 2019-11-02 | 1 | -1/+1 |
* | Bump libcrypto, libssl and libtls majors due to changes in struct sizes | jsing | 2019-10-24 | 1 | -2/+2 |
* | Use a valid curve when constructing an EC_KEY that looks like X25519. | jsing | 2019-10-04 | 1 | -2/+3 |
* | Further improve the documentation of library initialization and configuration. | schwarze | 2019-06-14 | 3 | -37/+37 |
* | add missing backlinks to ssl(3) | schwarze | 2019-06-12 | 31 | -64/+100 |
* | List all 17 SSL pages that were missing. | schwarze | 2019-06-12 | 1 | -51/+89 |
* | remove pointless NOTES section header lines | schwarze | 2019-06-08 | 9 | -27/+27 |
* | provide getters and setters for the RSA_METHOD interface | gilles | 2019-06-05 | 1 | -1/+1 |
* | Relax parsing of TLS key share extensions on the server. | jsing | 2019-05-29 | 1 | -5/+2 |
* | Do not send an SNI extension when resuming a session that contains a server | jsing | 2019-05-29 | 1 | -1/+4 |
* | Fix typo and label indent. | jsing | 2019-05-28 | 1 | -3/+3 |
* | Tidy up some names/structures following the renaming of TLS extension | jsing | 2019-05-28 | 1 | -35/+35 |
* | *an* RSA; | jmc | 2019-05-20 | 2 | -6/+6 |
* | s3 is never NULL since s2 (formerly used for SSLv2) does not exist, so there is | bcook | 2019-05-15 | 3 | -29/+20 |
* | Remove unused pad check, which is handled by tls1_cbc_remove_padding() now. | bcook | 2019-05-13 | 1 | -4/+2 |
* | In DTLS, use_srtp is part of the extended server hello while in TLSv1.3, | tb | 2019-05-08 | 1 | -2/+3 |
* | Use calloc/freezero when allocating and freeing the session ticket data. | jsing | 2019-04-25 | 1 | -4/+6 |
* | Use EVP_CIPHER_CTX_{new,free}() and HMAC_CTX_{new,free}() instead of | jsing | 2019-04-25 | 1 | -24/+29 |
* | Rename some variables in tls_decrypt_ticket(). | jsing | 2019-04-25 | 1 | -18/+18 |
* | Convert tls_decrypt_ticket() to CBS. | jsing | 2019-04-23 | 1 | -44/+72 |
* | Provide a derr label (decode/decrypt error) in tls1_decrypt_ticket(). | jsing | 2019-04-22 | 1 | -41/+29 |
* | Pass the session ID down to the session/ticket handling code as a CBS. | jsing | 2019-04-22 | 4 | -35/+36 |
* | Inline and remove the tlsext_tick_md macro. | jsing | 2019-04-22 | 3 | -6/+5 |
* | Clean up tls1_process_ticket(). | jsing | 2019-04-21 | 1 | -39/+43 |