Age | Commit message (Expand) | Author |
2016-03-10 | http -> https for a few more IETF URLs in comments or man pages | Michael McConville |
2015-10-16 | Remove pointless externs - the structs are declared in the same files a | Joel Sing |
2015-10-16 | Expand DECLARE_ASN1_ALLOC_FUNCTIONS and DECLARE_ASN1_FUNCTIONS_const | Joel Sing |
2015-10-16 | Remove pointless uses of DECLARE_ASN1_ENCODE_FUNCTIONS_const. | Joel Sing |
2015-10-13 | Convert ECParameters_dup() from a macro that uses ASN1_dup_of() into an | Joel Sing |
2015-09-29 | Replace remaining M_ASN1_BIT_STRING_(new|free) macros with calls to | Joel Sing |
2015-09-10 | Correct spelling of OPENSSL_cleanse. | Joel Sing |
2015-09-10 | Replace remaining M_ASN1_STRING_* macros with calls to ASN1_STRING_*. | Joel Sing |
2015-07-29 | Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generated | Joel Sing |
2015-07-25 | Expand ASN.1 template macros - the generated assembly only differs by | Joel Sing |
2015-06-20 | Handle NIST curve names. | Joel Sing |
2015-06-20 | Have ECPKParameters_print() include the NIST curve name, if known. | Joel Sing |
2015-06-20 | Provide EC_curve_nid2nist() and EC_curve_nist2nid(). | Joel Sing |
2015-05-20 | No need to check the return value of memcpy() if you actually checked this | Miod Vallat |
2015-04-29 | Add missing BN_CTX_end() calls. | Doug Hogan |
2015-03-20 | Fix a memory leak in an error path. | Doug Hogan |
2015-03-19 | Fix several crash causing defects from OpenSSL. | Ted Unangst |
2015-02-15 | In ec_wNAF_mul(), move the declaration of tmp_wNAF higher in scope, so that | Miod Vallat |
2015-02-13 | fix leaking of bn, coverity issue 105351 | Bob Beck |
2015-02-11 | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | Bob Beck |
2015-02-11 | get rid of OPENSSL_NO_CMS code we do not use. | Bob Beck |
2015-02-10 | Expand the IMPLEMENT_ASN1_ALLOC_FUNCTIONS macro so that the code is visible | Joel Sing |
2015-02-10 | Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that the | Joel Sing |
2015-02-09 | BN_CTX_get() can fail - consistently check its return value. | Joel Sing |
2015-02-09 | Remove unused GOST test that prevents clang from building libcrypto. | Doug Hogan |
2015-02-08 | Use `> 0' instead of `!= 0' as a successful condition for | Miod Vallat |
2015-02-07 | Delete a lot of #if 0 code in libressl. | Doug Hogan |
2014-12-03 | handle the (impossible) situation of a size_t - 1 buffer from | Theo de Raadt |
2014-12-03 | Spotted another opportunity to use reallocarray(). | Theo de Raadt |
2014-11-12 | Fix GOST TC26-B curve description. | Miod Vallat |
2014-11-11 | Don't free garbage in ec_wNAF_mul() if wNAF could be allocated but | Philip Guenther |
2014-11-09 | GOST crypto algorithms (well, most of them), ported from the removed GOST | Miod Vallat |
2014-10-07 | EC_KEY_set_group() does an EC_GROUP_dup() of its argument, so we don't | Miod Vallat |
2014-07-13 | Fix memory leak. | Loganaden Velvindron |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-11 | Only import cryptlib.h in the four source files that actually need it. | Joel Sing |
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-07-01 | Avoid a NULL deref in i2d_ECPrivateKey() when an EC_KEY lacks the public key | Miod Vallat |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt |
2014-05-31 | copy a comment placed in other files; req from miod | Theo de Raadt |
2014-05-30 | more: no need for null check before free | Theo de Raadt |
2014-05-30 | no need for null check before free. from Brendan MacDonell | Ted Unangst |
2014-05-29 | ok, next pass after review: when possible, put the reallocarray arguments | Theo de Raadt |
2014-05-29 | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | Theo de Raadt |
2014-05-29 | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | Bob Beck |
2014-05-25 | calloc instead of malloc/memset. from Benjamin Baier | Ted Unangst |
2014-05-22 | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | Miod Vallat |