| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change SSLerror() back to taking two args, with the first one being an SSL *. | beck | 2017-02-07 | 1 | -15/+15 |
| * | Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the ugly | beck | 2017-01-26 | 1 | -23/+12 |
| * | Send the error function codes to rot in the depths of hell where they belong | beck | 2017-01-26 | 1 | -15/+15 |
| * | Add support for setting the supported EC curves via | jsing | 2017-01-24 | 1 | -4/+4 |
| * | sk_SSL_CIPHER_free() checks for NULL so do not bother doing the same from | jsing | 2017-01-24 | 1 | -3/+2 |
| * | ssl_sess_cert_free() checks for NULL, so do not bother doing it at the | jsing | 2017-01-24 | 1 | -3/+6 |
| * | There is no point in zeroing fields that exist within a struct that is | jsing | 2017-01-24 | 1 | -3/+1 |
| * | Split most of SSL_METHOD out into an internal variant, which is opaque. | jsing | 2017-01-23 | 1 | -4/+3 |
| * | Move a large part of ssl_st into internal, so we can see what squeals. | beck | 2017-01-23 | 1 | -15/+15 |
| * | Move ex_data, next and prev from SSL_SESSION to internal. | jsing | 2017-01-23 | 1 | -24/+24 |
| * | Move most of the fields in SSL_CTX to internal - the ones that remain are | jsing | 2017-01-23 | 1 | -28/+28 |
| * | move the callbacks from ssl_st to internal | beck | 2017-01-23 | 1 | -7/+7 |
| * | Move callback function pointers and argument pointers from SSL_CTX to | jsing | 2017-01-23 | 1 | -22/+22 |
| * | Move not_resumable and sess_cert from SSL_SESSION to internal. | jsing | 2017-01-23 | 1 | -5/+5 |
| * | Move the stats struct from SSL_CTX to internal. | jsing | 2017-01-23 | 1 | -6/+6 |
| * | Move internal parts of ssl_session_st to internal | beck | 2017-01-22 | 1 | -9/+9 |
| * | Convert publically visible structs to translucent structs. | jsing | 2017-01-22 | 1 | -4/+12 |
| * | Expand LHASH_OF, IMPLEMENT_LHASH_DOALL_ARG_FN and LHASH_DOALL_ARG_FN | jsing | 2016-11-02 | 1 | -5/+11 |
| * | Wrap some >80 char lines. | jsing | 2016-11-02 | 1 | -9/+9 |
| * | Sort and group functions. | jsing | 2016-09-04 | 1 | -12/+11 |
| * | Expand IMPLEMENT_PEM macros. | jsing | 2016-09-04 | 1 | -2/+29 |
| * | X509_free(3) is NULL-safe, so remove NULL checks before its calls. | mmcc | 2016-03-11 | 1 | -3/+2 |
| * | Remove support for DTLS_BAD_VER. We do not support non-standard and | jsing | 2015-09-10 | 1 | -2/+1 |
| * | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 1 | -4/+4 |
| * | Remove SSLv3 support from LibreSSL. | doug | 2015-08-27 | 1 | -2/+1 |
| * | Remove duplicate check in libssl. | doug | 2015-07-21 | 1 | -3/+1 |
| * | Remove trailing whitespace. | jsing | 2014-12-14 | 1 | -8/+8 |
| * | Clean up more SSLv2 remnants. | jsing | 2014-11-08 | 1 | -10/+9 |
| * | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-18 | 1 | -4/+2 |
| * | Refactor and simplify the ECC extension handling. The existing code | jsing | 2014-09-22 | 1 | -21/+1 |
| * | Provide a ssl3_get_cipher_by_id() function that allows ciphers to be looked | jsing | 2014-08-11 | 1 | -13/+2 |
| * | Since we no longer need to support SSLv2-style cipher lists, start | jsing | 2014-08-10 | 1 | -3/+3 |
| * | The bell tolls for BUF_strdup - Start the migration to using | beck | 2014-07-13 | 1 | -2/+2 |
| * | Apply a large dose of KNF. | jsing | 2014-07-12 | 1 | -126/+202 |
| * | Remove the PSK code. We don't need to drag around this | beck | 2014-07-11 | 1 | -9/+1 |
| * | decompress libssl. ok beck jsing | tedu | 2014-07-10 | 1 | -3/+2 |
| * | always compare memcmp against 0, for clarity. | tedu | 2014-06-21 | 1 | -2/+2 |
| * | convert CRYPTO_memcmp to timingsafe_memcmp based on current policy favoring | tedu | 2014-06-19 | 1 | -2/+2 |
| * | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
| * | without overthinking it, replace a few memcmp calls with CRYPTO_memcmp | tedu | 2014-06-04 | 1 | -1/+1 |
| * | ECDH and ECDSA will not work overly well if there is no EC, so unifdef | jsing | 2014-05-31 | 1 | -6/+0 |
| * | TLS would not be entirely functional without extensions, so unifdef | jsing | 2014-05-31 | 1 | -16/+0 |
| * | There is no point in checking if a pointer is non-NULL before calling free, | jsing | 2014-05-28 | 1 | -21/+9 |
| * | Remove SRP and Kerberos support from libssl. These are complex protocols | tedu | 2014-05-05 | 1 | -16/+0 |
| * | whitespace | tedu | 2014-04-23 | 1 | -2/+2 |
| * | more malloc/realloc/calloc cleanups; ok beck kettenis | deraadt | 2014-04-21 | 1 | -3/+2 |
| * | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | guenther | 2014-04-20 | 1 | -4/+6 |
| * | More KNF and style consistency tweaks | guenther | 2014-04-19 | 1 | -12/+12 |
| * | kill REF_PRINT/REF_CHECK debugging framework noone would use | deraadt | 2014-04-17 | 1 | -9/+0 |
| * | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 1 | -16/+16 |