Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 1 | -1/+4 | |
| | | | | | | | | | an OPENSSL_NO_* define. This avoids relying on something else pulling it in for us, plus it fixes several cases where the #ifndef OPENSSL_NO_XYZ is never going to do anything, since OPENSSL_NO_XYZ will never defined, due to the fact that opensslconf.h has not been included. This also includes some miscellaneous sorting/tidying of headers. | |||||
* | KNF | miod | 2014-07-10 | 1 | -26/+34 | |
| | ||||||
* | Fix a double free in a can't-fail error path in PKCS7_decrypt(), by removing | miod | 2014-07-10 | 1 | -10/+6 | |
| | | | | | the error path altogether and simplifying the local variables as a result. joint work with jsing@; ok jsing@ tedu@ | |||||
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 1 | -1/+3 | |
| | | | | | | are needed in the source files that actually require them. ok beck@ miod@ | |||||
* | Remove #if 0 code which dumps your data to stdout. | miod | 2014-07-10 | 1 | -9/+1 | |
| | ||||||
* | More KNF. | jsing | 2014-07-08 | 1 | -16/+18 | |
| | ||||||
* | pk7_doit.c r1.20 introduced a NULL check that ensures that the signature | jsing | 2014-07-02 | 1 | -2/+2 | |
| | | | | | | | | | | contents are not NULL, however this breaks detached signature processing. Fix this by allowing the signature contents to be NULL when operating with a detached signature. Found the hard way by sthen@. ok sthen@ | |||||
* | Remove more unused cruft. | jsing | 2014-07-02 | 29 | -1633/+0 | |
| | | | | No objection from the usual suspects. | |||||
* | KNF. | jsing | 2014-07-02 | 1 | -61/+51 | |
| | ||||||
* | Remove yet another unused file... a backup copy (minus copyright and | jsing | 2014-06-29 | 1 | -66/+0 | |
| | | | | includes) follows this commit message: | |||||
* | KNF. | jsing | 2014-06-29 | 11 | -1606/+1563 | |
| | | | | | | | | I just spent too long chasing a bug in here and really should have done this first. Gem of the day... is it an if test or a for loop? No, it is a super ifloop! if (!(flags & PKCS7_NOVERIFY)) for (k = 0; k < sk_X509_num(signers); k++) { | |||||
* | Remove another unused source file - I got suspicious when I found a | jsing | 2014-06-29 | 1 | -460/+0 | |
| | | | | | | | | function that ended with: if (ret & 0x01) if (ret & V_ASN1_CONSTRUCTED) } | |||||
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 14 | -12/+14 | |
| | ||||||
* | Remove various test stubs. The good ones have been moved by jsing | deraadt | 2014-06-07 | 4 | -833/+0 | |
| | | | | | | and others to the regress framework. These remaining ones just muddle us up when re-reading code repeatedly. ok jsing | |||||
* | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 1 | -2/+0 | |
| | | | | ok to firebomb from tedu@ | |||||
* | calloc instead of malloc/memset. from Benjamin Baier | tedu | 2014-05-25 | 1 | -3/+1 | |
| | ||||||
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 1 | -2/+2 | |
| | | | | | | | 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@ | |||||
* | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | miod | 2014-05-22 | 1 | -2/+1 | |
| | | | | eyeballed before applying. Contributed by Cyril Roelandt on tech@ | |||||
* | no no md2 | tedu | 2014-05-17 | 2 | -6/+0 | |
| | ||||||
* | Make sure PKCS7_get_octet_string() return values are checked for NULL. | miod | 2014-05-06 | 1 | -2/+10 | |
| | | | | | | Reported by David Ramos (and simultaneously to OpenSSL as PR#3339). ok beck@ logan@ | |||||
* | Use C99 initializers for the various FOO_METHOD structs. More readable, and | miod | 2014-04-27 | 1 | -12/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@ | |||||
* | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | beck | 2014-04-26 | 2 | -4/+2 | |
| | | | | | | | | 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@ | |||||
* | XXXXXXXXXXXXXXXX -> XXX | tedu | 2014-04-18 | 1 | -3/+3 | |
| | | | | XXXXXXXXXXXXXXXXXXXXXXX -> XXXX | |||||
* | fix another potential double free | jsg | 2014-04-18 | 1 | -2/+2 | |
| | | | | ok miod@ lteo@ jca@ | |||||
* | -netware | tedu | 2014-04-18 | 1 | -6/+2 | |
| | ||||||
* | Use of OPENSSL_SYS_xxx defines in public header files considered harmful. | miod | 2014-04-17 | 1 | -6/+0 | |
| | ||||||
* | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 2 | -18/+18 | |
| | | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free | |||||
* | we don't use these files for building | tedu | 2014-04-15 | 1 | -96/+0 | |
| | ||||||
* | remove auto-generated dependencies from the old unused build system, so | deraadt | 2014-04-14 | 1 | -98/+0 | |
| | | | | | that it is easier to find code pieces. They are getting in the way. ok miod | |||||
* | Cope with the removal of openssl/symhacks.h | deraadt | 2014-04-13 | 1 | -1/+0 | |
| | ||||||
* | This commit was generated by cvs2git to track changes on a CVS vendor | miod | 2014-04-13 | 1 | -1/+1 | |
|\ | | | | | branch. | |||||
| * | Import OpenSSL 1.0.1g | miod | 2014-04-13 | 1 | -1/+1 | |
| | | ||||||
| * | import OpenSSL-1.0.1c | djm | 2012-10-13 | 2 | -28/+98 | |
| | | ||||||
| * | import OpenSSL 1.0.0e | djm | 2011-11-03 | 2 | -5/+0 | |
| | | ||||||
* | | resolve conflicts | djm | 2012-10-13 | 2 | -28/+98 | |
| | | ||||||
* | | openssl-1.0.0e: resolve conflicts | djm | 2011-11-03 | 2 | -5/+0 | |
| | | ||||||
* | | resolve conflicts, fix local changes | djm | 2010-10-01 | 9 | -1265/+778 | |
| | | ||||||
* | | This commit was generated by cvs2git to track changes on a CVS vendor | djm | 2010-10-01 | 1 | -0/+69 | |
|\| | | | | | branch. | |||||
| * | import OpenSSL-1.0.0a | djm | 2010-10-01 | 9 | -1022/+847 | |
| | | ||||||
| * | import of OpenSSL 0.9.8k | djm | 2009-04-06 | 1 | -2/+1 | |
| | | ||||||
| * | import openssl-0.9.8j | djm | 2009-01-09 | 4 | -4/+5 | |
| | | ||||||
| * | import of OpenSSL 0.9.8h | djm | 2008-09-06 | 8 | -249/+509 | |
| | | ||||||
| * | import of openssl-0.9.7j | djm | 2006-06-27 | 3 | -77/+99 | |
| | | ||||||
| * | import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@ | djm | 2005-04-29 | 4 | -36/+118 | |
| | | ||||||
| * | import openssl-0.9.7d | markus | 2004-04-07 | 1 | -32/+26 | |
| | | ||||||
| * | import 0.9.7c | markus | 2003-11-11 | 4 | -39/+75 | |
| | | ||||||
| * | import 0.9.7b (without idea and rc5) | markus | 2003-05-11 | 1 | -3/+3 | |
| | | ||||||
| * | import openssl-0.9.7-stable-SNAP-20020911 (without idea) | markus | 2002-09-12 | 1 | -0/+7 | |
| | | ||||||
| * | import openssl-0.9.7-beta1 | markus | 2002-09-05 | 7 | -585/+1314 | |
| | | ||||||
| * | This commit was manufactured by cvs2git to create branch 'unlabeled-1.1.1'. | cvs2svn | 2002-05-15 | 4 | -0/+1398 | |
| | |