Age | Commit message (Expand) | Author |
2014-05-30 | Fix some more nasty stringyness in here by using asprintf instead of cruft. | Bob Beck |
2014-05-30 | more: no need to null check before free; ok guenther | Theo de Raadt |
2014-05-30 | more: no need for null check before free | Theo de Raadt |
2014-05-30 | While working on another diff I ended up looking to see why on earth the | Joel Sing |
2014-05-30 | remove CONST_STRICT. ok beck deraadt | Ted Unangst |
2014-05-30 | no need for null check before free. from Brendan MacDonell | Ted Unangst |
2014-05-30 | Don't write out more than we have allocated in obj_txt, as the glory | Bob Beck |
2014-05-30 | remove some of the bigger lies, as applicable to libressl. | Ted Unangst |
2014-05-29 | I do not have time to describe how bad the realloc() uses in here, now | Theo de Raadt |
2014-05-29 | the comment says RAND_pseudo_bytes should be RAND_bytes. make it so. | Ted Unangst |
2014-05-29 | we no longer care that these aren't used for ssl2 | Ted Unangst |
2014-05-29 | ok, next pass after review: when possible, put the reallocarray arguments | Theo de Raadt |
2014-05-29 | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | Theo de Raadt |
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck |
2014-05-29 | remove back compat that was already disabled back in 1998. | Ted Unangst |
2014-05-29 | Any sane platform has stdio. Stop pretending we will ever use a platform | Bob Beck |
2014-05-29 | no space before label | Ted Unangst |
2014-05-29 | line up else better | Ted Unangst |
2014-05-29 | consistent braces | Ted Unangst |
2014-05-29 | unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them. | Ted Unangst |
2014-05-29 | repair KNF indent | Theo de Raadt |
2014-05-29 | use calloc, from Benjamin Baier | Ted Unangst |
2014-05-29 | Make it substantially easier to identify protocol version requirements | Joel Sing |
2014-05-29 | When you have functions that perform specific functions, use them. | Joel Sing |
2014-05-29 | Fix another two cases where the return value of ssl_replace_hash() is | Joel Sing |
2014-05-28 | More KNF. | Joel Sing |
2014-05-28 | Refactor tls1_change_cipher_state() and split the compression handling out | Joel Sing |
2014-05-28 | EVP_MD_CTX_create() calls malloc and can return NULL. However, only one of | Joel Sing |
2014-05-28 | There is no point in checking if a pointer is non-NULL before calling free, | Joel Sing |
2014-05-28 | More KNF. | Joel Sing |
2014-05-27 | Fix a Y2038 problem, by conversion of long to time_t. | Theo de Raadt |
2014-05-27 | Remove unused defines. | Miod Vallat |
2014-05-27 | Remove redundant test introduced in s3_pkt.c on 20001225, which got cargo-culted | Miod Vallat |
2014-05-27 | Wrap some long lines. | Joel Sing |
2014-05-27 | Remove MemCheck_{on,off} that escaped last time around. | Joel Sing |
2014-05-27 | More KNF. | Joel Sing |
2014-05-27 | Fix ia64 cross-gcc target. | Tobias Ulmer |
2014-05-26 | Replace the following logic: | Miod Vallat |
2014-05-26 | Unchecked malloc() return value in SSL_COMP_add_compression_method(), in the | Miod Vallat |
2014-05-26 | We don't really to keep history in constructs such as: | Miod Vallat |
2014-05-26 | tls_decrypt_ticket(): memory leak and uncleaned EVP_CIPHER_CTX upon error. | Miod Vallat |
2014-05-26 | Make sure all error paths in dtls1_buffer_record() invoke SSLErr by | Miod Vallat |
2014-05-26 | Implement an improved version of the EVP AEAD API. The | Joel Sing |
2014-05-26 | Use C99 initialisers for BIO_METHOD. | Joel Sing |
2014-05-26 | KNF. | Joel Sing |
2014-05-26 | repair some KNF missed by the script; ok jsing | Theo de Raadt |
2014-05-26 | KNF. | Joel Sing |
2014-05-26 | KNF. | Joel Sing |
2014-05-25 | heartbearts->heartbeats fix | Loganaden Velvindron |
2014-05-25 | calloc instead of malloc/memset. from Benjamin Baier | Ted Unangst |