Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-10-13 | BIO_free() and SSL_CTX_free() have explicit NULL checks, so there is no | jsing | 1 | -29/+16 | |
need to have additional checks here. | |||||
2014-10-13 | Add NPN regress tests from OpenSSL. However, unlike OpenSSL, actually exit | jsing | 2 | -3/+146 | |
with a failure if the NPN verification fails. | |||||
2014-10-13 | The return value on success of fcntl(F_SETFL) is not actually specified, | bcook | 2 | -6/+6 | |
only that it returns -1 on failure. pointed out by guenther@ | |||||
2014-10-13 | prefer C99 array initialization syntax. | bcook | 5 | -10/+10 | |
use C99 array initialization syntax for strict C compilers. from kinichiro, found building with HP/UX compiler ok deraadt@, guenther@ | |||||
2014-10-13 | Use O_NONBLOCK over FIONBIO. | bcook | 4 | -15/+23 | |
Prefer this because it is the POSIX standard and has consistent behavior across platforms. Use BIO_socket_nbio consistently across the tree. from Jonas 'Sortie' Termansen, ok deraadt@ | |||||
2014-10-12 | Remove useless comments in DES_is_weak_key(). Do we really care that this | miod | 2 | -28/+20 | |
function was found broken in 1993, and later on in 1997? | |||||
2014-10-12 | Paranoia: in ASN1_mbstring_ncopy(), check for len < 0 instead of len == -1, | miod | 2 | -4/+4 | |
in order to catch all negative sizes. | |||||
2014-10-12 | Convert libssl manpages from pod to mdoc(7). | bentley | 249 | -7737/+19938 | |
libcrypto has not been started yet. ok schwarze@ miod@ | |||||
2014-10-11 | include header needed by older linux kernels | bcook | 2 | -2/+4 | |
not all versions of <linux/random.h> include <linux/types.h> by default | |||||
2014-10-11 | Since deraadt@ remembers seeing strdup() on one particular 4.2BSD machine, | schwarze | 1 | -4/+11 | |
i looked a bit closer and found instances before Reno, so correct HISTORY. References: http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.1cBSD/usr/src/ucb/dbx/defs.h http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.3BSD/usr/src/etc/inetd.c http://minnie.tuhs.org/cgi-bin/utree.pl?file=4.3BSD-Reno/src/lib/libc/string/strdup.c ok deraadt@ | |||||
2014-10-11 | Userland reallocarray() audit. | doug | 1 | -3/+3 | |
Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ | |||||
2014-10-11 | Userland reallocarray() audit. | doug | 1 | -3/+3 | |
Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ | |||||
2014-10-10 | replace select with equiv poll usage. | dlg | 1 | -17/+12 | |
looks good deraadt@ tweaks and ok millert@ | |||||
2014-10-09 | add an API version number. ok jsing | tedu | 1 | -1/+3 | |
2014-10-08 | history | tedu | 1 | -4/+10 | |
2014-10-08 | use preferred license form. can't trust that doug guy with anything... | tedu | 1 | -20/+11 | |
2014-10-08 | mlinks, and prune some functions from man page i'm not ready for yet. | tedu | 2 | -14/+33 | |
2014-10-08 | more better | tedu | 1 | -3/+6 | |
2014-10-08 | reluctantly rename man page after a function | tedu | 1 | -1/+1 | |
2014-10-08 | whack a few stray .Pp macros | schwarze | 1 | -4/+1 | |
2014-10-08 | add a few more functions. | tedu | 1 | -5/+17 | |
(I also forgot to credit doug for much of the initial markup in the previous commit.) |