| Commit message (Expand) | Author | Age | Files | Lines |
* | use freezero() instead of memset/explicit_bzero + free. Substantially | deraadt | 2017-05-02 | 1 | -5/+2 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 7 | -76/+50 |
* | Add ct and nonct versions of BN_mod_inverse for internal use | beck | 2017-01-21 | 1 | -3/+3 |
* | Split out BN_div and BN_mod into ct and nonct versions for Internal use. | beck | 2017-01-21 | 3 | -9/+9 |
* | Make explicit _ct and _nonct versions of bn_mod_exp funcitons that | beck | 2017-01-21 | 4 | -9/+13 |
* | Expand ASN1_ITEM_rptr macro - no change in generated assembly. | jsing | 2016-12-30 | 1 | -2/+2 |
* | Explicitly export a list of symbols from libcrypto. | jsing | 2016-12-21 | 1 | -1/+5 |
* | Kill a bunch of OLD_ASN1 usage by replacing ASN1_{d2i,i2d}_* with | jsing | 2016-11-04 | 2 | -9/+30 |
* | unifdef OPENSSL_NO_CMS | jsing | 2016-10-19 | 1 | -24/+1 |
* | Remove flags for disabling constant-time operations. | bcook | 2016-06-30 | 2 | -14/+5 |
* | Disable DSA_FLAG_NO_EXP_CONSTTIME, always enable constant-time behavior. | bcook | 2016-06-21 | 3 | -88/+46 |
* | Set BN_FLG_CONSTTIME on the correct variable. beck committed wrong fix.libressl-v2.4.1 | tedu | 2016-06-06 | 1 | -2/+2 |
* | Correct a problem that prevents the DSA signing algorithm from running | beck | 2016-06-06 | 1 | -4/+6 |
* | Remove support for ancient, broken DSA implementations. | doug | 2016-03-01 | 1 | -60/+20 |
* | Group d2i/i2d function prototypes by type and add missing externs for the | jsing | 2015-10-13 | 1 | -7/+12 |
* | We don't need no stinking "EXAMPLE OF THE DSA" or README (the credits are | jsing | 2015-09-26 | 2 | -126/+0 |
* | When loading a DSA key from an raw (without DH parameters) ASN.1 serialization, | miod | 2015-09-10 | 1 | -2/+48 |
* | Fix an incorrect error check in DSA verify. | bcook | 2015-09-10 | 1 | -4/+2 |
* | Fix inverted test in previous. Commit message told what we intended, but | miod | 2015-07-15 | 1 | -2/+2 |
* | Previous fix for Coverity CID 21785 did not cope correctly with seed_len != 0, | miod | 2015-07-15 | 1 | -1/+3 |
* | Avoid calling BN_CTX_end() on a context that wasn't started. | doug | 2015-02-15 | 1 | -4/+4 |
* | If we decide to discard the provided seed buffer because its size is not | miod | 2015-02-15 | 1 | -8/+6 |
* | Coverity CID 21733 (unchecked allocation), 78823 (leak on error). | miod | 2015-02-14 | 1 | -1/+6 |
* | Expand ASN1_CHOICE*, ASN1_SEQUENCE* and associated macros, making the | jsing | 2015-02-14 | 1 | -29/+213 |
* | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | beck | 2015-02-11 | 1 | -1/+24 |
* | get rid of OPENSSL_NO_CMS code we do not use. | beck | 2015-02-11 | 1 | -24/+1 |
* | Enable building with -DOPENSSL_NO_DEPRECATED. | doug | 2015-02-11 | 1 | -1/+2 |
* | Expand the -IMPLEMENT_ASN1_ENCODE_FUNCTIONS_(const_)?fname macros so that | jsing | 2015-02-10 | 1 | -5/+53 |
* | BN_CTX_get() can fail - consistently check its return value. | jsing | 2015-02-09 | 1 | -9/+17 |
* | Fix a number of issues relating to algorithms in signatures, Mostly | beck | 2015-01-28 | 1 | -2/+14 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 1 | -3/+3 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 5 | -10/+5 |
* | dsa_priv_decode(): only destroy the object we've created, and with the | miod | 2014-07-13 | 1 | -3/+5 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 7 | -62/+36 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 11 | -38/+41 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 5 | -7/+22 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 2 | -3/+7 |
* | ASN1_STRING_free can handle NULL, so callers don't need to check. ok miod | tedu | 2014-07-09 | 1 | -7/+4 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |
* | Make use of this wonderful modern C construct known as a `switch', instead of | miod | 2014-07-09 | 1 | -11/+17 |
* | KNF | miod | 2014-07-09 | 11 | -906/+939 |
* | hand-KNF macro the do { } while loops | deraadt | 2014-06-27 | 1 | -16/+20 |
* | replace atoi() calls with strtol(). Follow the idiomatic pattern in our | deraadt | 2014-06-12 | 1 | -15/+35 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 14 | -11/+14 |
* | Remove various test stubs. The good ones have been moved by jsing | deraadt | 2014-06-07 | 1 | -111/+0 |
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 2 | -2/+2 |
* | more: no need to null check before free; ok guenther | deraadt | 2014-05-30 | 1 | -1/+1 |
* | more: no need for null check before free | deraadt | 2014-05-30 | 1 | -2/+1 |
* | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 2 | -4/+0 |
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 1 | -1/+1 |