| Commit message (Expand) | Author | Age | Files | Lines |
* | Use cipher suite values instead of IDs. | jsing | 2024-07-22 | 1 | -11/+7 |
* | Remove cipher from SSL_SESSION. | jsing | 2024-07-20 | 1 | -9/+3 |
* | Hide all public symbols in libssl | beck | 2023-07-08 | 1 | -1/+3 |
* | Make internal header file names consistent | tb | 2022-11-26 | 1 | -2/+2 |
* | Simplify another CBS_write_bytes() call in d2i_SSL_SESSION() | tb | 2022-06-07 | 1 | -5/+2 |
* | Simplify various CBS_write_bytes() calls | tb | 2022-06-07 | 1 | -5/+2 |
* | Simplify CBS_write_bytes() invocation | tb | 2022-06-07 | 1 | -5/+2 |
* | Use SSL3_CK_VALUE_MASK instead of hardcoded 0xffff and remove some | tb | 2022-06-06 | 1 | -2/+2 |
* | Rename 'peer' to 'peer_cert' in SSL_SESSION. | jsing | 2022-01-11 | 1 | -6/+6 |
* | Change tlsext_tick_lifetime_hint to uint32_t. | jsing | 2021-10-23 | 1 | -6/+3 |
* | Make local header inclusion consistent. | jsing | 2021-05-16 | 1 | -3/+2 |
* | whitespace nits | tb | 2021-03-29 | 1 | -4/+4 |
* | Simplify new session ticket encoding/generation. | jsing | 2018-08-27 | 1 | -20/+49 |
* | In i2d_SSL_SESSION(), on error call CBB_cleanup() with the correct CBB. | jsing | 2018-03-20 | 1 | -2/+2 |
* | Add missing $OpenBSD$ tags. | jsing | 2017-05-06 | 1 | -2/+1 |
* | Switch back to freezero() and explicitly initialise data_len to zero. The | jsing | 2017-04-30 | 1 | -6/+3 |
* | backout previous, data_len is not always initialized | otto | 2017-04-16 | 1 | -2/+5 |
* | Switch i2d_SSL_SESSION() back to freezero(3) now that the size constraints | jsing | 2017-04-14 | 1 | -5/+2 |
* | Revert ssl_asn1.c r1.50 - CBB and freezero(3) do not play nicely together. | jsing | 2017-04-11 | 1 | -2/+5 |
* | Use freezero() for i2d_SSL_SESSION() - one line of code instead of three. | jsing | 2017-04-10 | 1 | -5/+2 |
* | Change SSLerror() back to taking two args, with the first one being an SSL *. | beck | 2017-02-07 | 1 | -2/+2 |
* | Send the error function codes to rot in the depths of hell where they belong | beck | 2017-01-26 | 1 | -2/+2 |
* | Restore previous ASN.1 encoding for the peer certificate - this was | jsing | 2016-12-26 | 1 | -7/+5 |
* | Restore previous behaviour of incrementing the pointer so that it points | jsing | 2016-12-26 | 1 | -1/+2 |
* | Ensure that we zero memory used to hold the ASN.1 encoded session, since | jsing | 2016-12-07 | 1 | -1/+4 |
* | Avoid signed vs unsigned warnings from clang by adding two casts, | jsing | 2016-12-03 | 1 | -2/+2 |
* | One of the error paths would attempt to access not-yet-initialized locals. | miod | 2016-11-05 | 1 | -2/+2 |
* | Completely rewrite the session handling ASN.1 code using CBB and CBS. This | jsing | 2016-11-04 | 1 | -616/+329 |
* | X509_free(3) is NULL-safe, so remove NULL checks before its calls. | mmcc | 2016-03-11 | 1 | -5/+4 |
* | Remove trailing whitespace. | jsing | 2014-12-14 | 1 | -15/+15 |
* | SSL: Fix memory leak in d2i_SSL_SESSION. | bcook | 2014-10-20 | 1 | -1/+2 |
* | Get rid of the last remaining BUF_strdup and BUF_strlcpy and friends, use | beck | 2014-10-16 | 1 | -2/+2 |
* | Stop leaking internal library pointers in error messages. | jsing | 2014-07-13 | 1 | -2/+2 |
* | Explicitly initialise slen - this was not previously done due to a missing | jsing | 2014-07-13 | 1 | -1/+2 |
* | Convert error handling to SSLerr and ERR_asprintf_error_data. | jsing | 2014-07-13 | 1 | -59/+54 |
* | Convert d2i_SSL_SESSION to ASN1 primitives, instead of the horrific | jsing | 2014-07-13 | 1 | -26/+297 |
* | Remove license introduced with the PSK code, which has since been removed. | jsing | 2014-07-13 | 1 | -27/+1 |
* | Another compression remnant. | jsing | 2014-07-13 | 1 | -2/+1 |
* | Rewrite i2d_SSL_SESSION to use the ASN1 primitives, rather than using the | jsing | 2014-07-13 | 1 | -75/+98 |
* | KNF and some code cleaning. | jsing | 2014-07-13 | 1 | -36/+46 |
* | Missing initialization for error line in error paths; from Coverity via | miod | 2014-07-11 | 1 | -1/+4 |
* | Remove the PSK code. We don't need to drag around this | beck | 2014-07-11 | 1 | -53/+2 |
* | decompress libssl. ok beck jsing | tedu | 2014-07-10 | 1 | -31/+1 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
* | TLS would not be entirely functional without extensions, so unifdef | jsing | 2014-05-31 | 1 | -16/+0 |
* | Remove SRP and Kerberos support from libssl. These are complex protocols | tedu | 2014-05-05 | 1 | -66/+0 |
* | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | guenther | 2014-04-20 | 1 | -21/+3 |
* | More KNF and style consistency tweaks | guenther | 2014-04-19 | 1 | -3/+2 |
* | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 1 | -15/+15 |
* | add back SRP. i was being too greedy. | tedu | 2014-04-16 | 1 | -0/+33 |