Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-16 | limit maximum work performed by the CRC compensation attack detector, | Damien Miller | |
problem reported by Tavis Ormandy, Google Security Team; ok markus@ deraadt@ | |||
2006-08-03 | almost entirely get rid of the culture of ".h files that include .h files" | Theo de Raadt | |
ok djm, sort of ok stevesk makes the pain stop in one easy step | |||
2006-07-22 | move #include <string.h> out of includes.h | Kevin Steves | |
2006-03-30 | replace {GET,PUT}_XXBIT macros with functionally similar functions, | Damien Miller | |
silencing a heap of lint warnings. also allows them to use __bounded__ checking which can't be applied to macros; requested by and feedback from deraadt@ | |||
2006-03-25 | Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that | Damien Miller | |
Theo nuked - our scripts to sync -portable need them in the files | |||
2006-03-25 | change OpenSSH's xrealloc() function from being xrealloc(p, new_size) to | Damien Miller | |
xrealloc(p, new_nmemb, new_itemsize). realloc is particularly prone to integer overflows because it is almost always allocating "n * size" bytes, so this is a far safer API; ok deraadt@ | |||
2006-03-25 | introduce xcalloc() and xasprintf() failure-checked allocations functions | Damien Miller | |
and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@ | |||
2006-03-22 | remove IV support from the CRC attack detector, OpenSSH has never used | Damien Miller | |
it - it only applied to IDEA-CFB, which we don't support. prompted by NetBSD Coverity report via elad AT netbsd.org; feedback markus@ "nuke it" deraadt@ | |||
2006-03-20 | spacing | Theo de Raadt | |
2006-03-19 | RCSID() can die | Theo de Raadt | |
2006-02-07 | duplicate #include | Kevin Steves | |
2003-09-18 | more buffer allocation fixes; from Solar Designer; CAN-2003-0682; ok millert@ | Markus Friedl | |
2002-03-04 | $OpenBSD$ and RCSID() cleanup: don't use RCSID() in .h files; add | Kevin Steves | |
missing RCSID() to .c files and remove dup /*$OpenBSD$*/ from .c files. ok markus@ | |||
2001-12-19 | basic KNF done while i was looking for something else | Theo de Raadt | |
2001-12-05 | make it compile with more strict prototype checking | Jun-ichiro itojun Hagino | |
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-06-23 | more strict prototypes. raise warning level in Makefile.inc. markus ok'ed | Jun-ichiro itojun Hagino | |
TODO; cleanup headers | |||
2001-03-01 | KNF | Theo de Raadt | |
2001-01-21 | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | Markus Friedl | |
rename util.[ch] -> misc.[ch] | |||
2000-12-19 | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | Markus Friedl | |
with u_char. | |||
2000-10-31 | so that large packets do not wrap "n"; from netbsd | Markus Friedl | |
2000-09-07 | cleanup copyright notices on all files. I have attempted to be accurate with | Theo de Raadt | |
the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate. | |||
2000-08-19 | rename crc32() to ssh_crc32() to avoid zlib name clash. do not move to | Theo de Raadt | |
libz crc32 function yet, because it has ugly "long"'s in it; oneill@cs.sfu.ca | |||
2000-06-20 | OpenBSD tag | Markus Friedl | |
1999-11-24 | much more KNF | Theo de Raadt | |
1999-11-23 | KNF part 1 | Markus Friedl | |
1999-11-02 | replace assert() with error, fatal or packet_disconnect | Markus Friedl | |
1999-10-05 | move auth-sockets to private dir | Markus Friedl | |
delete minfd residua | |||
1999-10-05 | include licensing info | Dug Song | |
1999-10-05 | crc32 compensation attack fix from CORE-SDI. "it's not crypto..." -- deraadt@ | Dug Song | |