summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509 (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Get rid of the last remaining BUF_strdup and BUF_strlcpy and friends, usebeck2014-10-161-2/+3
* Previous fix (1.12) would cause a NULL pointer dereference in the error pathmiod2014-09-291-4/+3
* check_cert(): be sure to reset ctx->current_crl to NULL before freeing it.miod2014-09-291-10/+5
* X509_NAME_get_text_by_OBJ(): make sure we do not pass a negative size tomiod2014-09-291-3/+5
* X509_VERIFY_PARAM_set1_name(): if invoked with NULL as the secondmiod2014-09-291-1/+2
* X509v3_add_ext(): do not free stuff we did not allocate in the error path.miod2014-09-281-2/+2
* X509_TRUST_add(): check X509_TRUST_get0() return value before dereferencing it,miod2014-09-281-15/+23
* Someone (TM) thought it was smart to save memory by using malloc(1) andmiod2014-09-281-5/+4
* X509_STORE_new(): do not leak memory upon error.miod2014-09-261-14/+17
* X509_issuer_and_serial_hash(): do not leak memory if an error occurs duringmiod2014-09-261-1/+3
* X509at_add1_attr(): do not free stuff we did not allocate in the error path.miod2014-09-261-3/+3
* Fix regression introduced in revision 1.15 by using strndup() instead ofmiod2014-09-231-6/+6
* BIO_free() returns immediately when the sole input is NULL.doug2014-07-251-5/+3
* Kill a bunch more BUF_strdup's - these are converted to have a check forbeck2014-07-221-2/+4
* Free sktmp when it's no longer needed. By doing so, we fix a bunch of memory ...logan2014-07-171-2/+4
* Check X509_NAME_oneline() return value when it will have to allocate memory.miod2014-07-131-1/+3
* jsing and I are investigating removal of all? most? 'getenv from library'deraadt2014-07-121-1/+3
* if (x) FOO_free(x) -> FOO_free(x).miod2014-07-121-3/+2
* Principle of least surprise: make CMAC_CTX_free(), OCSP_REQ_CTX_free() andmiod2014-07-121-1/+4
* When looking for the issuer of a certificate, if the current candidate ismiod2014-07-113-13/+97
* Only import cryptlib.h in the four source files that actually need it.jsing2014-07-1122-85/+85
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-107-9/+25
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-108-12/+26
* delete some casts. ok miodtedu2014-07-101-2/+2
* remove unused, private version strings except SSL_version_strbcook2014-07-091-3/+1
* Memory-leak-in-error-path of the day in X509_ATTRIBUTE_set1_data().miod2014-07-031-2/+3
* Fix a memory leak and another one that occurs in the error paths.logan2014-06-281-2/+6
* Unifdef -UNO_SYS_TYPES_Hmiod2014-06-241-4/+2
* Since this is a library, place issetugid() before every getenv()deraadt2014-06-232-5/+7
* wrap getenv OPENSSL_ALLOW_PROXY_CERTS in an issetugid check, to protectderaadt2014-06-201-2/+2
* check stack push return and make some effort to clean up. ok beck miodtedu2014-06-191-2/+6
* improve error checking. set error code on error, and check malloc return.tedu2014-06-191-2/+13
* tags as requested by miod and teduderaadt2014-06-1226-26/+26
* Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored sincejsing2014-06-111-1/+0
* malloc() result does not need a cast.deraadt2014-06-073-6/+6
* no need for null check before free. from Brendan MacDonelltedu2014-05-302-4/+2
* convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53deraadt2014-05-291-1/+1
* Everything sane has stdio, and FILE *. we don't need ifdefs for this.beck2014-05-292-22/+0
* Any sane platform has stdio. Stop pretending we will ever use a platformbeck2014-05-293-8/+0
* calloc instead of malloc/memset. from Benjamin Baiertedu2014-05-252-4/+2
* Almost nothing actually needs to include <openssl/e_os2.h>, however byjsing2014-05-241-1/+2
* Replace all use of ERR_add_error_data with ERR_asprintf_error_data.beck2014-04-262-2/+2
* Restore beck's (void)snprintf(): they were reviewed.guenther2014-04-202-3/+3
* KNF.jsing2014-04-205-238/+305
* More KNF.jsing2014-04-202-3/+3
* KNF.jsing2014-04-206-714/+951
* KNF.jsing2014-04-206-470/+592
* KNF.jsing2014-04-204-264/+359
* More KNF.jsing2014-04-193-33/+34
* We'll interpret a (void) cast on snprintf() to mean it's been verified thatguenther2014-04-192-2/+2