summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/pem
AgeCommit message (Expand)AuthorFilesLines
2020-07-25remove half a dozen "goto" statements and a labelschwarze1-14/+1
2020-07-23Fix a bug in PEM_X509_INFO_read_bio(3) that is very likely to causeschwarze1-21/+17
2019-09-06Handle CMS PEM headers.jsing1-1/+11
2019-07-08Clean up pvkfmt.cinoguchi1-63/+66
2019-07-07Fix pvk format processing in libcryptoinoguchi1-11/+11
2018-08-24Change PEM_Sign{Init,Update}() to return an int.tb2-8/+8
2018-08-24Check return value of EVP_EncodeUpdate() in PEM_write_bio().tb1-2/+3
2018-08-05Fix memory leak in i2b_PVK in error handling.bcook1-14/+10
2018-05-13Add const qualifier to the 'name', 'header', and 'data' arguments oftb2-9/+10
2018-04-14make ENGINE_finish() succeed on NULL and simplify callers as intb1-3/+2
2017-05-02use freezero() instead of memset/explicit_bzero + free. Substantiallyderaadt3-19/+8
2017-01-29Send the function codes from the error functions to the bit bucket,beck9-154/+95
2017-01-21Make explicit _ct and _nonct versions of bn_mod_exp funcitons thatbeck1-2/+4
2016-11-05Make sure PEM_SealInit() will correctly destroy the PEM_ENCODE_SEAL_CTXmiod1-8/+22
2016-10-19unifdef OPENSSL_NO_CMSjsing1-10/+1
2016-09-04Place IMPLEMENT_PEM macros under #ifndef LIBRESSL_INTERNAL.jsing1-2/+4
2016-09-04Sort and group functions.jsing4-238/+215
2016-09-04Expand IMPLEMENT_PEM macros.jsing4-30/+545
2016-03-02fix the rest of the read_ledword() calls used as lengths to be bounded.beck1-1/+5
2016-03-02bound lengths coming out of a pem file to something like realitybeck1-3/+7
2015-09-10Correct spelling of OPENSSL_cleanse.jsing6-25/+26
2015-07-19Drop stupid (int) casts for the arguments of malloc() and friends. This ismiod1-2/+2
2015-07-16Make sure the `reject negative sizes' logic introduced in 1.34 is actuallymiod1-3/+4
2015-05-15Fix return paths with missing EVP_CIPHER_CTX_cleanup() calls.jsg1-7/+5
2015-02-11Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment.beck1-1/+10
2015-02-11get rid of OPENSSL_NO_CMS code we do not use.beck1-10/+1
2015-02-11Enable building with -DOPENSSL_NO_DEPRECATED.doug2-2/+4
2015-02-10Replace assert() and OPENSSL_assert() calls with proper error return paths.miod2-7/+17
2014-10-22Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().jsing2-8/+6
2014-10-18None of these need to include <openssl/rand.h>jsing5-10/+5
2014-07-23Make sure PEM_def_callback() correctly handles negative buffer sizes; all usesmiod1-10/+17
2014-07-12if (x) FOO_free(x) -> FOO_free(x).miod3-21/+12
2014-07-11Missing bounds check in do_PVK_body(); OpenSSL RT #2277, from OpenSSL trunk,miod1-4/+10
2014-07-11Only import cryptlib.h in the four source files that actually need it.jsing11-53/+61
2014-07-10Explicitly include <openssl/opensslconf.h> in every file that referencesjsing7-7/+22
2014-07-10Stop including standard headers via cryptlib.h - pull in the headers thatjsing5-7/+17
2014-07-10delete some casts. ok miodtedu1-2/+2
2014-07-10Missing allocation checks and potential NULL pointer dereference in themiod1-7/+15
2014-07-09remove unused, private version strings except SSL_version_strbcook1-3/+1
2014-06-12tags as requested by miod and teduderaadt14-12/+14
2014-06-07malloc() result does not need a cast.deraadt3-3/+3
2014-06-01Avoid the use of an uninitialised variable. In reality, this is a non-issuejsing1-2/+1
2014-05-30more: no need for null check before freederaadt3-18/+9
2014-05-29convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53deraadt2-3/+3
2014-05-29Everything sane has stdio, and FILE *. we don't need ifdefs for this.beck6-45/+0
2014-05-26We don't really to keep history in constructs such as:miod1-6/+0
2014-05-24Almost nothing actually needs to include <openssl/e_os2.h>, however byjsing1-1/+2
2014-05-22if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod1-2/+1
2014-04-26Replace all use of ERR_add_error_data with ERR_asprintf_error_data.beck1-1/+1
2014-04-23Unifdef -UPEDANTIC. ok beck@ tedu@miod1-6/+0