Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-04-20 | KNF. | jsing | 24 | -2308/+2268 | |
2014-04-20 | reset imprint to NULL to avoid double free. from mancha1 at zoho | tedu | 2 | -0/+2 | |
2014-04-19 | release buffers fix was lost in merge. put it back. | tedu | 2 | -2/+4 | |
2014-04-19 | change some rsh references to ssh. poke by jmc | tedu | 2 | -9/+9 | |
2014-04-19 | More KNF. | jsing | 4 | -74/+84 | |
2014-04-19 | More KNF. | jsing | 6 | -90/+122 | |
2014-04-19 | another attempt at fixing stale x509 data. since we don't know where the | tedu | 2 | -20/+16 | |
initial storage came from, we can't free it. just memset in the sequence case. probably ok beck | |||||
2014-04-19 | More KNF. | jsing | 14 | -157/+163 | |
2014-04-19 | More KNF. | jsing | 2 | -40/+40 | |
2014-04-19 | tweak previous; | jmc | 1 | -3/+2 | |
2014-04-19 | zap trailing whitespace; | jmc | 1 | -2/+2 | |
2014-04-19 | remove the openssl_fdset wrapper, and a variety of VMS'ism's like | deraadt | 6 | -48/+19 | |
crazy (void *) casts all over the place ok beck jsing | |||||
2014-04-19 | KNF. | jsing | 12 | -1626/+1628 | |
2014-04-19 | Remove a gethostbyname() cache layer. The internet works better these | deraadt | 1 | -50/+1 | |
days. Initially fixed this, but Ted asked for it to die. | |||||
2014-04-19 | ReadFile() and GetStdHandle() are not very POSIX. | deraadt | 4 | -45/+6 | |
ok beck jsing | |||||
2014-04-19 | truncation check some snprintf calls (over-cautiously in case) | deraadt | 4 | -19/+78 | |
ok jsing beck | |||||
2014-04-19 | can't actually do this. cause unknown. | tedu | 2 | -2/+2 | |
2014-04-19 | Fix some serious pointer-arithmatic-magic-number-unchecked-return eyebleed | beck | 1 | -53/+44 | |
that I stumbled into here and got stuck with. If modern society can get past selling daughters for cows, surely we can decide to write modern C code in an "application" that is probably 3 lines of shell/python/cgi away from talking to the internet in a lot of places.. (This file still needs a lot more love though) "oh god yuck" deraadt@ ok tedu@ | |||||
2014-04-19 | KNF. | jsing | 12 | -1128/+1060 | |
2014-04-19 | Repair some indent to be more KNF, and break instead of fallthrough to | deraadt | 1 | -12/+14 | |
default which does break | |||||
2014-04-19 | one small tweak to avoid ever going off the end of a string. | tedu | 1 | -4/+6 | |
2014-04-19 | improved checking for invalid hashes. from solar designer | tedu | 1 | -6/+10 | |
2014-04-19 | More KNF. | jsing | 6 | -66/+68 | |
2014-04-19 | kill a stray \ | deraadt | 1 | -2/+2 | |
2014-04-19 | Lacking a proof that--for this implementation--exposure of Montgomery | guenther | 4 | -14/+14 | |
multiplication or RSA blinding parameters doesn't permit retroactive timing analysis of the secrets, we'll do the stupidly cheap thing and cleanse them before freeing them. ok deraadt@ | |||||
2014-04-19 | More KNF. | jsing | 10 | -476/+592 | |
2014-04-19 | Remove hacky workaround for Cray T3E. | deraadt | 1 | -11/+0 | |
ok guenther | |||||
2014-04-19 | More KNF. | jsing | 8 | -522/+758 | |
2014-04-19 | oops, typo got into change | deraadt | 1 | -1/+1 | |
2014-04-19 | More KNF. | jsing | 6 | -20/+28 | |
2014-04-19 | malloc + strlcpy -> strdup | deraadt | 1 | -3/+2 | |
2014-04-19 | unifdef ENOTDIR, everyone has it | deraadt | 1 | -15/+3 | |
2014-04-19 | We'll interpret a (void) cast on snprintf() to mean it's been verified that | guenther | 55 | -147/+147 | |
truncation is either desirable, not an issue, or is detected and handled later ok deraadt@ | |||||
2014-04-19 | Use somewhat harsher language and better examples; demonstrate that | deraadt | 4 | -109/+88 | |
non-dangerous use functions is difficult. ok guenther | |||||
2014-04-19 | Split inet(3) into three pages by decade: 1980s -> inet_lnaof(3), | guenther | 4 | -183/+320 | |
1990s -> inet_addr(3), 2000s and beyond -> inet_ntop(3). ok tedu@ (who also noted the timeline) deraadt@ jmc@ | |||||
2014-04-19 | egd is gone | deraadt | 4 | -38/+3 | |
2014-04-19 | The internal ssl2_* functions and variables are gone | guenther | 2 | -60/+0 | |
2014-04-19 | More KNF. | jsing | 8 | -1370/+1522 | |
2014-04-19 | Add SSL_OP_NO_TLSv1_1 and SSL_OP_NO_TLSv1_2 | guenther | 1 | -4/+13 | |
Document that SSL_OP_NO_SSLv2 is a no-op now | |||||
2014-04-19 | More KNF and style consistency tweaks | guenther | 53 | -479/+465 | |
2014-04-19 | More KNF. | jsing | 12 | -760/+942 | |
2014-04-19 | More KNF. | jsing | 12 | -726/+868 | |
2014-04-19 | More KNF. | jsing | 14 | -406/+414 | |
2014-04-19 | use intrinsic strlcpy and strlcat everywhere so we only have one set of | beck | 31 | -106/+106 | |
funcitons to check for incorrect use. keep BUF_strlcpy and BUF_strlcat for API comptibility only. ok tedu@ | |||||
2014-04-18 | OPENSSL_gmtime() is really just gmtime_r(); ok guenther | deraadt | 10 | -26/+12 | |
2014-04-18 | spacing | tedu | 2 | -20/+22 | |
2014-04-18 | remove references to rshd; | jmc | 2 | -15/+6 | |
2014-04-18 | tone down some XXXXX to not appear in grep | tedu | 5 | -5/+5 | |
2014-04-18 | XXXXXXXXXXXXXXXX -> XXX | tedu | 2 | -6/+6 | |
XXXXXXXXXXXXXXXXXXXXXXX -> XXXX | |||||
2014-04-18 | unifdef NO_SOCK | tedu | 8 | -16/+0 | |