summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/pem (follow)
Commit message (Expand)AuthorAgeFilesLines
* Change PEM_Sign{Init,Update}() to return an int.tb2018-08-242-8/+8
* Check return value of EVP_EncodeUpdate() in PEM_write_bio().tb2018-08-241-2/+3
* Fix memory leak in i2b_PVK in error handling.bcook2018-08-051-14/+10
* Add const qualifier to the 'name', 'header', and 'data' arguments oftb2018-05-132-9/+10
* make ENGINE_finish() succeed on NULL and simplify callers as intb2018-04-141-3/+2
* use freezero() instead of memset/explicit_bzero + free. Substantiallyderaadt2017-05-023-19/+8
* Send the function codes from the error functions to the bit bucket,beck2017-01-299-154/+95
* Make explicit _ct and _nonct versions of bn_mod_exp funcitons thatbeck2017-01-211-2/+4
* Make sure PEM_SealInit() will correctly destroy the PEM_ENCODE_SEAL_CTXmiod2016-11-051-8/+22
* unifdef OPENSSL_NO_CMSjsing2016-10-191-10/+1
* Place IMPLEMENT_PEM macros under #ifndef LIBRESSL_INTERNAL.jsing2016-09-041-2/+4
* Sort and group functions.jsing2016-09-044-238/+215
* Expand IMPLEMENT_PEM macros.jsing2016-09-044-30/+545
* fix the rest of the read_ledword() calls used as lengths to be bounded.beck2016-03-021-1/+5
* bound lengths coming out of a pem file to something like realitybeck2016-03-021-3/+7
* Correct spelling of OPENSSL_cleanse.jsing2015-09-106-25/+26
* Drop stupid (int) casts for the arguments of malloc() and friends. This ismiod2015-07-191-2/+2
* Make sure the `reject negative sizes' logic introduced in 1.34 is actuallymiod2015-07-161-3/+4
* Fix return paths with missing EVP_CIPHER_CTX_cleanup() calls.jsg2015-05-151-7/+5
* Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment.beck2015-02-111-1/+10
* get rid of OPENSSL_NO_CMS code we do not use.beck2015-02-111-10/+1
* Enable building with -DOPENSSL_NO_DEPRECATED.doug2015-02-112-2/+4
* Replace assert() and OPENSSL_assert() calls with proper error return paths.miod2015-02-102-7/+17
* Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().jsing2014-10-222-8/+6
* None of these need to include <openssl/rand.h>jsing2014-10-185-10/+5
* Make sure PEM_def_callback() correctly handles negative buffer sizes; all usesmiod2014-07-231-10/+17
* if (x) FOO_free(x) -> FOO_free(x).miod2014-07-123-21/+12
* Missing bounds check in do_PVK_body(); OpenSSL RT #2277, from OpenSSL trunk,miod2014-07-111-4/+10
* Only import cryptlib.h in the four source files that actually need it.jsing2014-07-1111-53/+61
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-107-7/+22
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-105-7/+17
* delete some casts. ok miodtedu2014-07-101-2/+2
* Missing allocation checks and potential NULL pointer dereference in themiod2014-07-101-7/+15
* remove unused, private version strings except SSL_version_strbcook2014-07-091-3/+1
* tags as requested by miod and teduderaadt2014-06-1214-12/+14
* malloc() result does not need a cast.deraadt2014-06-073-3/+3
* Avoid the use of an uninitialised variable. In reality, this is a non-issuejsing2014-06-011-2/+1
* more: no need for null check before freederaadt2014-05-303-18/+9
* convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53deraadt2014-05-292-3/+3
* Everything sane has stdio, and FILE *. we don't need ifdefs for this.beck2014-05-296-45/+0
* We don't really to keep history in constructs such as:miod2014-05-261-6/+0
* Almost nothing actually needs to include <openssl/e_os2.h>, however byjsing2014-05-241-1/+2
* if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod2014-05-221-2/+1
* Replace all use of ERR_add_error_data with ERR_asprintf_error_data.beck2014-04-261-1/+1
* Unifdef -UPEDANTIC. ok beck@ tedu@miod2014-04-231-6/+0
* More KNF.jsing2014-04-214-8/+8
* KNF.jsing2014-04-2114-1570/+1612
* Restore beck's rev 1.7: snprintf() was reviewed.guenther2014-04-201-2/+4
* We'll interpret a (void) cast on snprintf() to mean it's been verified thatguenther2014-04-191-2/+2
* use intrinsic strlcpy and strlcat everywhere so we only have one set ofbeck2014-04-191-6/+6