Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt | |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt | |
ok miod | |||
2014-06-01 | Avoid the use of an uninitialised variable. In reality, this is a non-issue | Joel Sing | |
since the calculated value is not actually used in the uninitialised case. Change the code so that we only do the calculation if we actually need it. Issue detected by clang and reported by both brad@ and Brent Cook. | |||
2014-05-30 | more: no need for null check before free | Theo de Raadt | |
ok tedu guenther | |||
2014-05-29 | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | Theo de Raadt | |
potential integer overflows easily changed into an allocation return of NULL, with errno nicely set if need be. checks for an allocations returning NULL are commonplace, or if the object is dereferenced (quite normal) will result in a nice fault which can be detected & repaired properly. ok tedu | |||
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck | |
ok to firebomb from tedu@ | |||
2014-05-26 | We don't really to keep history in constructs such as: | Miod Vallat | |
#if 1 /* new with openssl 0.9.4 */ current code; #else obsolete code; #endif | |||
2014-05-24 | Almost nothing actually needs to include <openssl/e_os2.h>, however by | Joel Sing | |
including it they get <openssl/opensslconf.h>. So instead of pulling in <openssl/e_os2.h>, just pull in <openssl/opensslconf.h>. "go ahead" miod@ | |||
2014-05-22 | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | Miod Vallat | |
eyeballed before applying. Contributed by Cyril Roelandt on tech@ | |||
2014-04-26 | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | Bob Beck | |
This avoids a lot of ugly gymnastics to do snprintfs before sending the bag of strings to ERR, and eliminates at least one place in dso_dlfctn.c where it was being called with the incorrect number of arguments and using random things off the stack as addresses of strings. ok krw@, jsing@ | |||
2014-04-23 | Unifdef -UPEDANTIC. ok beck@ tedu@ | Miod Vallat | |
2014-04-21 | More KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-20 | Restore beck's rev 1.7: snprintf() was reviewed. | Philip Guenther | |
Also, use sizeof() for snprintf()'s size argument | |||
2014-04-19 | We'll interpret a (void) cast on snprintf() to mean it's been verified that | Philip Guenther | |
truncation is either desirable, not an issue, or is detected and handled later ok deraadt@ | |||
2014-04-19 | use intrinsic strlcpy and strlcat everywhere so we only have one set of | Bob Beck | |
funcitons to check for incorrect use. keep BUF_strlcpy and BUF_strlcat for API comptibility only. ok tedu@ | |||
2014-04-17 | fix some of the leaks | Jonathan Gray | |
ok miod@ looks good deraadt@ | |||
2014-04-17 | Change library to use intrinsic memory allocation functions instead of | Bob Beck | |
OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free | |||
2014-04-17 | Do not feed RSA private key information to the random subsystem as | Theo de Raadt | |
entropy. It might be fed to a pluggable random subsystem.... What were they thinking?! ok guenther | |||
2014-04-15 | we don't use these files for building | Ted Unangst | |
2014-04-15 | remove FIPS mode support. people who require FIPS can buy something that | Ted Unangst | |
meets their needs, but dumping it in here only penalizes the rest of us. ok beck deraadt | |||
2014-04-15 | Send the rotIBM stream cipher (ebcdic) to Valhalla to party for eternity | Bob Beck | |
with the bearded ones... some API's that nobody should be using will dissapear with this commit. | |||
2014-04-15 | Part 1 of eliminating BIO_snprintf(). This fixes mechanical conversions | Bob Beck | |
where the return value is ignored changing to (void) snprintf. ok deraadt@ | |||
2014-04-14 | remove auto-generated dependencies from the old unused build system, so | Theo de Raadt | |
that it is easier to find code pieces. They are getting in the way. ok miod | |||
2014-04-13 | Cope with the removal of openssl/symhacks.h | Theo de Raadt | |
2014-04-13 | Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery. | Miod Vallat | |
2011-11-03 | openssl-1.0.0e: resolve conflicts | Damien Miller | |
2010-10-01 | resolve conflicts, fix local changes | Damien Miller | |
2010-10-01 | import OpenSSL-1.0.0a | Damien Miller | |
2009-04-06 | resolve conflicts | Damien Miller | |
2009-01-09 | resolve conflicts | Damien Miller | |
2008-09-06 | resolve conflicts | Damien Miller | |
2006-06-27 | resolve conflicts | Damien Miller | |
2005-04-29 | resolve conflicts | Damien Miller | |
2005-04-29 | import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@ | Damien Miller | |
2004-04-08 | merge 0.9.7d | Markus Friedl | |
2003-05-12 | merge 0.9.7b with local changes; crank majors for libssl/libcrypto | Markus Friedl | |
2003-04-03 | str{cat,cpy}/sprintf cleanup. markus@, deraadt@ ok | Hakan Olsson | |
2002-09-14 | merge with openssl-0.9.7-stable-SNAP-20020911, | Markus Friedl | |
new minor for libcrypto (_X509_REQ_print_ex) tested by miod@, pb@ | |||
2002-09-10 | merge openssl-0.9.7-beta3, tested on vax by miod@ | Markus Friedl | |
2002-09-04 | execute bourne shell scripts with 'sh' and not with $SHELL | Markus Friedl | |
2002-06-07 | Merge OpenSSL 0.9.7-stable-20020605, | Bob Beck | |
correctly autogenerate obj_mac.h | |||
2002-05-15 | import openssl-0.9.7-beta1 | Bob Beck | |
2002-05-15 | OpenSSL 0.9.7 stable 2002 05 08 merge | Bob Beck | |
2001-06-22 | openssl-engine-0.9.6a merge | Bob Beck | |
2000-12-15 | openssl-engine-0.9.6 merge | Bob Beck | |
2000-04-15 | OpenSSL 0.9.5a merge | Bob Beck | |
2000-03-19 | OpenSSL 0.9.5 merge | Bob Beck | |
*warning* this bumps shared lib minors for libssl and libcrypto from 2.1 to 2.2 if you are using the ssl26 packages for ssh and other things to work you will need to get new ones (see ~beck/libsslsnap/<arch>) on cvs or ~beck/src-patent.tar.gz on cvs | |||
1999-11-23 | do not assume shell scripts are +x; d | Theo de Raadt | |
1999-09-29 | OpenSSL 0.9.4 merge | Bob Beck | |