| Commit message (Expand) | Author | Age | Files | Lines |
* | Check the result of sk_*_push() operations for failure. | miod | 2014-10-28 | 18 | -88/+170 |
* | POLLIN is not guaranteed to be set in revents for EOF so check for | millert | 2014-10-26 | 1 | -3/+3 |
* | Remove unnecessary include: netinet/in_systm.h is not needed by these | lteo | 2014-10-24 | 1 | -2/+1 |
* | Save space in man page: err() -> errc() and combine vars. | doug | 2014-10-23 | 1 | -18/+11 |
* | In PKCS12_setup_mac(), do not assign p12->mac->salt->length until the allocation | miod | 2014-10-22 | 2 | -16/+18 |
* | Avoid a NULL pointer dereference that can be triggered by | jsing | 2014-10-22 | 2 | -4/+4 |
* | #undef LIBRESSL_INTERNAL for the RAND_pseudo_bytes() test. | jsing | 2014-10-22 | 1 | -0/+2 |
* | Place most of the RAND_* functions under #ifndef LIBRESSL_INTERNAL (some | jsing | 2014-10-22 | 2 | -2/+8 |
* | Use arc4random_buf() instead of RAND(_pseudo)?_bytes(). | jsing | 2014-10-22 | 8 | -36/+19 |
* | None of these need <openssl/rand.h> | jsing | 2014-10-22 | 3 | -6/+3 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes() (most | jsing | 2014-10-22 | 4 | -21/+15 |
* | None of these need <openssl/rand.h> | jsing | 2014-10-22 | 5 | -5/+0 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 54 | -260/+202 |
* | Avoid writing in second person in malloc.3 | doug | 2014-10-22 | 1 | -13/+12 |
* | List extensions in the STANDARDS section, replacing some text below CAVEATS. | schwarze | 2014-10-20 | 1 | -33/+30 |
* | digests: *_LONG_LOG2 is not used, stop talking about it. | bcook | 2014-10-20 | 14 | -56/+22 |
* | SSL: Fix memory leak in d2i_SSL_SESSION. | bcook | 2014-10-20 | 2 | -2/+4 |
* | s_client: don't call shutdown on a non-existent socket descriptor. | bcook | 2014-10-20 | 1 | -3/+1 |
* | make RETURN VALUES more concise | schwarze | 2014-10-19 | 1 | -77/+28 |
* | Revamp malloc.3 by reordering the sections and rewriting parts. | doug | 2014-10-19 | 1 | -185/+417 |
* | Revert last commit due to changed semantics found by make release. | doug | 2014-10-19 | 1 | -10/+10 |
* | Better POSIX compliance in realpath(3). | doug | 2014-10-18 | 1 | -10/+10 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 62 | -128/+62 |
* | Sort/group includes. | jsing | 2014-10-18 | 2 | -50/+52 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-18 | 34 | -130/+76 |
* | Typical malloc() with size multiplication to reallocarray(). | doug | 2014-10-18 | 3 | -12/+12 |
* | use .fn here too. from Jean-Philippe Ouellet | tedu | 2014-10-16 | 1 | -3/+3 |
* | Repair BUF_strdup() breakage. | jsing | 2014-10-16 | 2 | -4/+6 |
* | Get rid of the last remaining BUF_strdup and BUF_strlcpy and friends, use | beck | 2014-10-16 | 8 | -16/+24 |
* | Fuck it. No SSLv3; not now, not ever. The API of the future will only | tedu | 2014-10-15 | 3 | -8/+4 |
* | basic formatting fixes; | jmc | 2014-10-15 | 1 | -4/+3 |
* | Disable SSLv3 by default. | jsing | 2014-10-15 | 2 | -2/+8 |
* | Clear protocol options before optionally setting them. | jsing | 2014-10-15 | 1 | -1/+6 |
* | Set SSL_OP_SINGLE_ECDH_USE before calling SSL_CTX_set_tmp_ecdh() - this | jsing | 2014-10-15 | 1 | -2/+2 |
* | Only require an EC public key in tls1_set_ec_id(), if we need to provide | jsing | 2014-10-15 | 2 | -8/+8 |
* | Add cipher aliases for DHE (the correct name for EDH) and ECDHE (the | jsing | 2014-10-15 | 4 | -8/+32 |
* | seems like a good time to make the ressl default TLSv1 only. | tedu | 2014-10-14 | 2 | -6/+5 |
* | Bump libressl version string to 2.1. | bcook | 2014-10-14 | 2 | -4/+4 |
* | remove unused variable | chl | 2014-10-13 | 1 | -3/+1 |
* | Remove _XOPEN_SOURCE_EXTENDED since we're not too concerned about | jsing | 2014-10-13 | 1 | -9/+2 |
* | BIO_free() and SSL_CTX_free() have explicit NULL checks, so there is no | jsing | 2014-10-13 | 1 | -29/+16 |
* | Add NPN regress tests from OpenSSL. However, unlike OpenSSL, actually exit | jsing | 2014-10-13 | 2 | -3/+146 |
* | The return value on success of fcntl(F_SETFL) is not actually specified, | bcook | 2014-10-13 | 2 | -6/+6 |
* | prefer C99 array initialization syntax. | bcook | 2014-10-13 | 5 | -10/+10 |
* | Use O_NONBLOCK over FIONBIO. | bcook | 2014-10-13 | 4 | -15/+23 |
* | Remove useless comments in DES_is_weak_key(). Do we really care that this | miod | 2014-10-12 | 2 | -28/+20 |
* | Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1, | miod | 2014-10-12 | 2 | -4/+4 |
* | Convert libssl manpages from pod to mdoc(7). | bentley | 2014-10-12 | 249 | -7737/+19938 |
* | include header needed by older linux kernels | bcook | 2014-10-11 | 2 | -2/+4 |
* | Since deraadt@ remembers seeing strdup() on one particular 4.2BSD machine, | schwarze | 2014-10-11 | 1 | -4/+11 |