| Commit message (Expand) | Author | Age | Files | Lines |
* | Avoid a potential NULL pointer dereference in d2i_ECPrivateKey(). | jsing | 2017-05-26 | 1 | -1/+7 |
* | use freezero() instead of memset/explicit_bzero + free. Substantially | deraadt | 2017-05-02 | 7 | -30/+17 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 22 | -562/+391 |
* | Add ct and nonct versions of BN_mod_inverse for internal use | beck | 2017-01-21 | 1 | -3/+4 |
* | Explicitly export a list of symbols from libcrypto. | jsing | 2016-12-21 | 2 | -3/+14 |
* | Add assembler code for the nist 256-bit GFp curve, written initially by | miod | 2016-11-04 | 9 | -6/+19107 |
* | unifdef OPENSSL_NO_CMS | jsing | 2016-10-19 | 1 | -22/+1 |
* | remove unused variable | beck | 2016-09-03 | 1 | -2/+1 |
* | Fix some very unnecessary convoultion. | beck | 2016-09-03 | 1 | -16/+6 |
* | " the the " -> " the ", or in a couple of cases replace the superfluous | krw | 2016-03-20 | 1 | -2/+2 |
* | Add error handling to the remaining calls to bn_wexpand(). | bcook | 2016-03-12 | 1 | -12/+16 |
* | http -> https for a few more IETF URLs in comments or man pages | mmcc | 2016-03-10 | 1 | -2/+2 |
* | Remove pointless externs - the structs are declared in the same files a | jsing | 2015-10-16 | 1 | -3/+1 |
* | Expand DECLARE_ASN1_ALLOC_FUNCTIONS and DECLARE_ASN1_FUNCTIONS_const | jsing | 2015-10-16 | 1 | -6/+17 |
* | Remove pointless uses of DECLARE_ASN1_ENCODE_FUNCTIONS_const. | jsing | 2015-10-16 | 1 | -3/+3 |
* | Convert ECParameters_dup() from a macro that uses ASN1_dup_of() into an | jsing | 2015-10-13 | 2 | -4/+19 |
* | Replace remaining M_ASN1_BIT_STRING_(new|free) macros with calls to | jsing | 2015-09-29 | 1 | -2/+2 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 6 | -15/+15 |
* | Replace remaining M_ASN1_STRING_* macros with calls to ASN1_STRING_*. | jsing | 2015-09-10 | 1 | -5/+5 |
* | Expand obsolete M_ASN1.*(cmp|dup|print|set) macros - no change in generated | jsing | 2015-07-29 | 1 | -5/+5 |
* | Expand ASN.1 template macros - the generated assembly only differs by | jsing | 2015-07-25 | 1 | -55/+351 |
* | Handle NIST curve names. | jsing | 2015-06-20 | 1 | -2/+4 |
* | Have ECPKParameters_print() include the NIST curve name, if known. | jsing | 2015-06-20 | 1 | -1/+10 |
* | Provide EC_curve_nid2nist() and EC_curve_nist2nid(). | jsing | 2015-06-20 | 2 | -2/+57 |
* | No need to check the return value of memcpy() if you actually checked this | miod | 2015-05-20 | 1 | -3/+2 |
* | Add missing BN_CTX_end() calls. | doug | 2015-04-29 | 1 | -7/+3 |
* | Fix a memory leak in an error path. | doug | 2015-03-20 | 1 | -1/+3 |
* | Fix several crash causing defects from OpenSSL. | tedu | 2015-03-19 | 1 | -21/+20 |
* | In ec_wNAF_mul(), move the declaration of tmp_wNAF higher in scope, so that | miod | 2015-02-15 | 1 | -6/+5 |
* | fix leaking of bn, coverity issue 105351 | beck | 2015-02-13 | 1 | -1/+2 |
* | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | beck | 2015-02-11 | 1 | -1/+22 |
* | get rid of OPENSSL_NO_CMS code we do not use. | beck | 2015-02-11 | 1 | -22/+1 |
* | Expand the IMPLEMENT_ASN1_ALLOC_FUNCTIONS macro so that the code is visible | jsing | 2015-02-10 | 1 | -4/+37 |
* | Expand the IMPLEMENT_ASN1_FUNCTIONS_{const,fname,name} macros so that the | jsing | 2015-02-10 | 1 | -3/+51 |
* | BN_CTX_get() can fail - consistently check its return value. | jsing | 2015-02-09 | 8 | -127/+165 |
* | Remove unused GOST test that prevents clang from building libcrypto. | doug | 2015-02-09 | 1 | -55/+1 |
* | Use `> 0' instead of `!= 0' as a successful condition for | miod | 2015-02-08 | 10 | -44/+44 |
* | Delete a lot of #if 0 code in libressl. | doug | 2015-02-07 | 2 | -18/+2 |
* | handle the (impossible) situation of a size_t - 1 buffer from | deraadt | 2014-12-03 | 1 | -2/+2 |
* | Spotted another opportunity to use reallocarray(). | deraadt | 2014-12-03 | 1 | -2/+2 |
* | Fix GOST TC26-B curve description. | miod | 2014-11-12 | 1 | -2/+2 |
* | Don't free garbage in ec_wNAF_mul() if wNAF could be allocated but | guenther | 2014-11-11 | 1 | -5/+11 |
* | GOST crypto algorithms (well, most of them), ported from the removed GOST | miod | 2014-11-09 | 1 | -2/+322 |
* | EC_KEY_set_group() does an EC_GROUP_dup() of its argument, so we don't | miod | 2014-10-07 | 1 | -8/+2 |
* | Fix memory leak. | logan | 2014-07-13 | 1 | -1/+2 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 19 | -276/+151 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 3 | -11/+14 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 16 | -29/+59 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 2 | -2/+6 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -4/+1 |