summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Replace remaining M_ASN1_BIT_STRING_(new|free) macros with calls tojsing2015-09-291-2/+2
* Correct spelling of OPENSSL_cleanse.jsing2015-09-106-15/+15
* Replace remaining M_ASN1_STRING_* macros with calls to ASN1_STRING_*.jsing2015-09-101-5/+5
* Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generatedjsing2015-07-291-5/+5
* Expand ASN.1 template macros - the generated assembly only differs byjsing2015-07-251-55/+351
* Handle NIST curve names.jsing2015-06-201-2/+4
* Have ECPKParameters_print() include the NIST curve name, if known.jsing2015-06-201-1/+10
* Provide EC_curve_nid2nist() and EC_curve_nist2nid().jsing2015-06-202-2/+57
* No need to check the return value of memcpy() if you actually checked thismiod2015-05-201-3/+2
* Add missing BN_CTX_end() calls.doug2015-04-291-7/+3
* Fix a memory leak in an error path.doug2015-03-201-1/+3
* Fix several crash causing defects from OpenSSL.tedu2015-03-191-21/+20
* In ec_wNAF_mul(), move the declaration of tmp_wNAF higher in scope, so thatmiod2015-02-151-6/+5
* fix leaking of bn, coverity issue 105351beck2015-02-131-1/+2
* Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment.beck2015-02-111-1/+22
* get rid of OPENSSL_NO_CMS code we do not use.beck2015-02-111-22/+1
* Expand the IMPLEMENT_ASN1_ALLOC_FUNCTIONS macro so that the code is visiblejsing2015-02-101-4/+37
* Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that thejsing2015-02-101-3/+51
* BN_CTX_get() can fail - consistently check its return value.jsing2015-02-098-127/+165
* Remove unused GOST test that prevents clang from building libcrypto.doug2015-02-091-55/+1
* Use `> 0' instead of `!= 0' as a successful condition formiod2015-02-0810-44/+44
* Delete a lot of #if 0 code in libressl.doug2015-02-072-18/+2
* handle the (impossible) situation of a size_t - 1 buffer fromderaadt2014-12-031-2/+2
* Spotted another opportunity to use reallocarray().deraadt2014-12-031-2/+2
* Fix GOST TC26-B curve description.miod2014-11-121-2/+2
* Don't free garbage in ec_wNAF_mul() if wNAF could be allocated butguenther2014-11-111-5/+11
* GOST crypto algorithms (well, most of them), ported from the removed GOSTmiod2014-11-091-2/+322
* EC_KEY_set_group() does an EC_GROUP_dup() of its argument, so we don'tmiod2014-10-071-8/+2
* Fix memory leak.logan2014-07-131-1/+2
* if (x) FOO_free(x) -> FOO_free(x).miod2014-07-1219-276/+151
* Only import cryptlib.h in the four source files that actually need it.jsing2014-07-113-11/+14
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-1016-29/+59
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-102-2/+6
* remove unused, private version strings except SSL_version_strbcook2014-07-091-4/+1
* Avoid a NULL deref in i2d_ECPrivateKey() when an EC_KEY lacks the public keymiod2014-07-011-2/+2
* tags as requested by miod and teduderaadt2014-06-1226-24/+26
* malloc() result does not need a cast.deraadt2014-06-077-7/+7
* copy a comment placed in other files; req from miodderaadt2014-05-311-1/+3
* more: no need for null check before freederaadt2014-05-307-32/+15
* no need for null check before free. from Brendan MacDonelltedu2014-05-301-6/+3
* ok, next pass after review: when possible, put the reallocarray argumentsderaadt2014-05-291-1/+1
* convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53deraadt2014-05-295-13/+20
* Everything sane has stdio, and FILE *. we don't need ifdefs for this.beck2014-05-292-6/+0
* calloc instead of malloc/memset. from Benjamin Baiertedu2014-05-253-12/+6
* if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefullymiod2014-05-222-10/+5
* Stop being a dummy... presumably these are left overs from pedantic modejsing2014-05-154-8/+0
* Typo in C99 field initializer introduced in r1.3;miod2014-05-091-1/+1
* Replace Apache v2 license with ISC license.matthew2014-05-094-50/+50
* kill some more VMS ifdefsgiovanni2014-05-083-12/+0
* don't free memory unless we allocated it.tedu2014-05-071-2/+4