summaryrefslogtreecommitdiff
path: root/lib/libcrypto/pem
AgeCommit message (Expand)Author
2018-08-24Change PEM_Sign{Init,Update}() to return an int.Theo Buehler
2018-08-24Check return value of EVP_EncodeUpdate() in PEM_write_bio().Theo Buehler
2018-08-05Fix memory leak in i2b_PVK in error handling.Brent Cook
2018-05-13Add const qualifier to the 'name', 'header', and 'data' arguments ofTheo Buehler
2018-04-14make ENGINE_finish() succeed on NULL and simplify callers as inTheo 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
2017-01-21Make explicit _ct and _nonct versions of bn_mod_exp funcitons thatBob Beck
2016-11-05Make sure PEM_SealInit() will correctly destroy the PEM_ENCODE_SEAL_CTXMiod Vallat
2016-10-19unifdef OPENSSL_NO_CMSJoel Sing
2016-09-04Place IMPLEMENT_PEM macros under #ifndef LIBRESSL_INTERNAL.Joel Sing
2016-09-04Sort and group functions.Joel Sing
2016-09-04Expand IMPLEMENT_PEM macros.Joel Sing
2016-03-02fix the rest of the read_ledword() calls used as lengths to be bounded.Bob Beck
2016-03-02bound lengths coming out of a pem file to something like realityBob Beck
2015-09-10Correct spelling of OPENSSL_cleanse.Joel Sing
2015-07-19Drop stupid (int) casts for the arguments of malloc() and friends. This isMiod Vallat
2015-07-16Make sure the `reject negative sizes' logic introduced in 1.34 is actuallyMiod Vallat
2015-05-15Fix return paths with missing EVP_CIPHER_CTX_cleanup() calls.Jonathan Gray
2015-02-11Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment.Bob Beck
2015-02-11get rid of OPENSSL_NO_CMS code we do not use.Bob Beck
2015-02-11Enable building with -DOPENSSL_NO_DEPRECATED.Doug Hogan
2015-02-10Replace assert() and OPENSSL_assert() calls with proper error return paths.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-23Make sure PEM_def_callback() correctly handles negative buffer sizes; all usesMiod Vallat
2014-07-12if (x) FOO_free(x) -> FOO_free(x).Miod Vallat
2014-07-11Missing bounds check in do_PVK_body(); OpenSSL RT #2277, from OpenSSL trunk,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-10Stop including standard headers via cryptlib.h - pull in the headers thatJoel Sing
2014-07-10delete some casts. ok miodTed Unangst
2014-07-10Missing allocation checks and potential NULL pointer dereference in theMiod Vallat
2014-07-09remove unused, private version strings except SSL_version_strBrent Cook
2014-06-12tags as requested by miod and teduTheo de Raadt
2014-06-07malloc() result does not need a cast.Theo de Raadt
2014-06-01Avoid the use of an uninitialised variable. In reality, this is a non-issueJoel Sing
2014-05-30more: no need for null check before freeTheo de Raadt
2014-05-29convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53Theo de Raadt
2014-05-29Everything sane has stdio, and FILE *. we don't need ifdefs for this.Bob Beck
2014-05-26We don't really to keep history in constructs such as:Miod Vallat
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
2014-04-26Replace all use of ERR_add_error_data with ERR_asprintf_error_data.Bob Beck
2014-04-23Unifdef -UPEDANTIC. ok beck@ tedu@Miod Vallat
2014-04-21More KNF.Joel Sing
2014-04-21KNF.Joel Sing
2014-04-20Restore beck's rev 1.7: snprintf() was reviewed.Philip Guenther
2014-04-19We'll interpret a (void) cast on snprintf() to mean it's been verified thatPhilip Guenther
2014-04-19use intrinsic strlcpy and strlcat everywhere so we only have one set ofBob Beck