summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ec
AgeCommit message (Expand)Author
2015-06-20Provide EC_curve_nid2nist() and EC_curve_nist2nid().Joel Sing
2015-05-20No need to check the return value of memcpy() if you actually checked thisMiod Vallat
2015-04-29Add missing BN_CTX_end() calls.Doug Hogan
2015-03-20Fix a memory leak in an error path.Doug Hogan
2015-03-19Fix several crash causing defects from OpenSSL.Ted Unangst
2015-02-15In ec_wNAF_mul(), move the declaration of tmp_wNAF higher in scope, so thatMiod Vallat
2015-02-13fix leaking of bn, coverity issue 105351Bob Beck
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-10Expand the IMPLEMENT_ASN1_ALLOC_FUNCTIONS macro so that the code is visibleJoel Sing
2015-02-10Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that theJoel Sing
2015-02-09BN_CTX_get() can fail - consistently check its return value.Joel Sing
2015-02-09Remove unused GOST test that prevents clang from building libcrypto.Doug Hogan
2015-02-08Use `> 0' instead of `!= 0' as a successful condition forMiod Vallat
2015-02-07Delete a lot of #if 0 code in libressl.Doug Hogan
2014-12-03handle the (impossible) situation of a size_t - 1 buffer fromTheo de Raadt
2014-12-03Spotted another opportunity to use reallocarray().Theo de Raadt
2014-11-12Fix GOST TC26-B curve description.Miod Vallat
2014-11-11Don't free garbage in ec_wNAF_mul() if wNAF could be allocated butPhilip Guenther
2014-11-09GOST crypto algorithms (well, most of them), ported from the removed GOSTMiod Vallat
2014-10-07EC_KEY_set_group() does an EC_GROUP_dup() of its argument, so we don'tMiod Vallat
2014-07-13Fix memory leak.Loganaden Velvindron
2014-07-12if (x) FOO_free(x) -> FOO_free(x).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-09remove unused, private version strings except SSL_version_strBrent Cook
2014-07-01Avoid a NULL deref in i2d_ECPrivateKey() when an EC_KEY lacks the public keyMiod Vallat
2014-06-12tags as requested by miod and teduTheo de Raadt
2014-06-07malloc() result does not need a cast.Theo de Raadt
2014-05-31copy a comment placed in other files; req from miodTheo de Raadt
2014-05-30more: no need for null check before freeTheo de Raadt
2014-05-30no need for null check before free. from Brendan MacDonellTed Unangst
2014-05-29ok, next pass after review: when possible, put the reallocarray argumentsTheo 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-25calloc instead of malloc/memset. from Benjamin BaierTed Unangst
2014-05-22if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullyMiod Vallat
2014-05-15Stop being a dummy... presumably these are left overs from pedantic modeJoel Sing
2014-05-09Typo in C99 field initializer introduced in r1.3;Miod Vallat
2014-05-09Replace Apache v2 license with ISC license.Matthew Dempsky
2014-05-08kill some more VMS ifdefsGiovanni Bechis
2014-05-07don't free memory unless we allocated it.Ted Unangst
2014-05-06knf approximationTed Unangst
2014-05-01Add support for the french ANSSI FRP256v1 elliptic curve.Miod Vallat
2014-05-01Add Brainpool elliptic curves. From OpenSSL RT#2239 via ${DAYJOB}.Miod Vallat
2014-04-27Use C99 initializers for the various FOO_METHOD structs. More readable, andMiod Vallat
2014-04-20return after error instead of plowing ahead. noticed by mancha1 at zohoTed Unangst
2014-04-17kill REF_PRINT/REF_CHECK debugging framework noone would useTheo de Raadt
2014-04-17Change library to use intrinsic memory allocation functions instead ofBob Beck