Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
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 | |
2014-04-18 | now that knf carpet bombing is finished, switch to hand to hand combat. | tedu | 4 | -346/+332 | |
still not sure what to make of mysteries like this: for (i = 7; i >= 0; i--) { /* increment */ | |||||
2014-04-18 | Unsurprisingly, since <unistd.h> was so darn hard to find for OpenSSL developers | beck | 10 | -62/+8 | |
they had resorted to manually protyping read(2) instead of incredible amount of preprocessor wizardry needed to find the ever illusive <unistd.h>. Let's just include <unistd.h> and we don't need to do this.. While we're at it flense out _OSD_POSIX and __DGJPP__ cruft. ok krw@ | |||||
2014-04-18 | ECDSA signature computation involves a random number. Remove the test trying to | miod | 1 | -116/+0 | |
force what RAND_bytes() will return and comparing it against known values - I can't let you do this, Dave. | |||||
2014-04-18 | collateral damage | tedu | 1 | -0/+1 | |
2014-04-18 | no app_rand.c | tedu | 1 | -2/+2 | |
2014-04-18 | $HOME/.rnd will never be a good source of entropy. ok beck | tedu | 23 | -392/+2 | |
2014-04-18 | Do not ask the user to pass either -DB_ENDIAN or -DL_ENDIAN to the compiler, | miod | 9 | -37/+37 | |
but rather figure out the endianness from <machine/endian.h> automagically; help from guenther@ ok jca@ guenther@ beck@ and the rest of the `Buena SSL rampage club' | |||||
2014-04-18 | Shrink a local buffer to the size it really needs to be; this is the only | miod | 2 | -2/+2 | |
discrepancy found while checking proper {HEX,DECIMAL}_SIZE macro usage, which is confusing enough. tweaks and ok jca@, ok guenther@ | |||||
2014-04-18 | eroMgib dne- nai 68xtnetelca .s | miod | 2 | -14/+4 | |
2014-04-18 | Not welcome | miod | 2 | -302/+0 | |
2014-04-18 | typo | miod | 2 | -2/+2 | |