summaryrefslogtreecommitdiff
path: root/lib/libcrypto/pkcs7
AgeCommit message (Expand)Author
2019-10-04Fix a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey.Theo Buehler
2019-03-13Fix a number of ASN1_INTEGER vs ASN1_STRING mixups coming from theTheo Buehler
2017-05-02use freezero() instead of memset/explicit_bzero + free. SubstantiallyTheo de Raadt
2017-01-29Send the function codes from the error functions to the bit bucket,Bob Beck
2016-12-30Expand ASN1_ITEM_rptr macros - no change in generated assembly.Joel Sing
2016-12-27Expand DECLARE_ASN1_{NDEF,PRINT}_FUNCTION macros - no change inJoel Sing
2016-12-27Remove all DECLARE_ASN1_SET_OF macro usage - since 2000 these have beenJoel Sing
2016-12-27Expand DECLARE_ASN1_ITEM - no change to preprocessor output.Joel Sing
2016-11-05More X509_STORE_CTX_set_*() return value checks.Miod Vallat
2016-09-04Expand DECLARE_ASN1_.*FUNCTIONS macros.Joel Sing
2015-09-30Replace M_ASN1_OCTET_STRING_(free|new) with ASN1_OCTET_STRING_(free|new).Joel Sing
2015-09-30Replace M_ASN1_INTEGER_(new|free) with ASN1_INTEGER_(new|free) - this isJoel Sing
2015-09-10Correct spelling of OPENSSL_cleanse.Joel Sing
2015-07-29Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generatedJoel Sing
2015-07-25Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-19Verify ASN1 objects types before attempting to access them as a particularMiod Vallat
2015-07-18Check the return value of ASN1_STRING_set(), for it may fail to allocateMiod Vallat
2015-07-15Remove dead code. Coverity CID 21688Miod Vallat
2015-03-19Fix several crash causing defects from OpenSSL.Ted Unangst
2015-02-10Expand IMPLEMENT_ASN1_NDEF_FUNCTION and IMPLEMENT_ASN1_PRINT_FUNCTIONJoel Sing
2015-02-10Manually expand ASN1_ITEM_rptr macros that should have been expanded withJoel Sing
2015-02-10Expand the IMPLEMENT_ASN1_DUP_FUNCTION macro so that the code is visibleJoel Sing
2015-02-09Expand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible andJoel Sing
2015-02-07Don't support very old versions of Netscape (is there any other kind?).Doug Hogan
2015-02-07Delete a lot of #if 0 code in libressl.Doug Hogan
2014-11-09GOST crypto algorithms (well, most of them), ported from the removed GOSTMiod Vallat
2014-10-28Check the result of sk_*_push() operations for failure.Miod Vallat
2014-10-22Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().Joel Sing
2014-10-18None of these need to include <openssl/rand.h>Joel Sing
2014-07-25BIO_free() returns immediately when the sole input is NULL.Doug Hogan
2014-07-12if (x) FOO_free(x) -> FOO_free(x).Miod Vallat
2014-07-11Only import cryptlib.h in the four source files that actually need it.Joel Sing
2014-07-10Explicitly include <openssl/opensslconf.h> in every file that referencesJoel Sing
2014-07-10KNFMiod Vallat
2014-07-10Fix a double free in a can't-fail error path in PKCS7_decrypt(), by removingMiod Vallat
2014-07-10Stop including standard headers via cryptlib.h - pull in the headers thatJoel Sing
2014-07-10Remove #if 0 code which dumps your data to stdout.Miod Vallat
2014-07-08More KNF.Joel Sing
2014-07-02pk7_doit.c r1.20 introduced a NULL check that ensures that the signatureJoel Sing
2014-07-02Remove more unused cruft.Joel Sing
2014-07-02KNF.Joel Sing
2014-06-29Remove yet another unused file... a backup copy (minus copyright andJoel Sing
2014-06-29KNF.Joel Sing
2014-06-29Remove another unused source file - I got suspicious when I found aJoel Sing
2014-06-12tags as requested by miod and teduTheo de Raadt
2014-06-07Remove various test stubs. The good ones have been moved by jsingTheo de Raadt
2014-05-29Everything sane has stdio, and FILE *. we don't need ifdefs for this.Bob Beck
2014-05-25calloc instead of malloc/memset. from Benjamin BaierTed Unangst
2014-05-24Almost nothing actually needs to include <openssl/e_os2.h>, however byJoel Sing
2014-05-22if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullyMiod Vallat