| Age | Commit message (Expand) | Author | Files | Lines |
| 2020-01-04 | Avoid leak in error path of dh_priv_decode |  inoguchi | 1 | -1/+2 |
| 2019-01-20 | Fix BN_is_prime_* calls in libcrypto, the API returns -1 on error. |  tb | 1 | -5/+12 |
| 2018-11-12 | Missing initialization for pub_key. CID 184303. |  tb | 1 | -2/+2 |
| 2018-11-09 | Initialize priv_key and pub_key on first use instead of at the top. |  tb | 1 | -6/+4 |
| 2018-11-06 | unrevert the use of bn_rand_interval(). |  tb | 1 | -6/+9 |
| 2018-11-06 | revert use of bn_rand_interval due to failures with ECDHE and TLS |  tb | 1 | -9/+6 |
| 2018-11-05 | Make use of bn_rand_interval() where appropriate. |  tb | 1 | -6/+9 |
| 2018-11-05 | Eliminate a few "} else" branches, a few unneeded NULL checks before |  tb | 1 | -16/+12 |
| 2018-11-05 | Remove two unnecessary BN_FLG_CONSTTIME dances: BN_mod_exp_ct() already |  tb | 1 | -12/+4 |
| 2018-08-24 | Add consts to EVP_PKEY_asn1_set_private() |  tb | 1 | -2/+2 |
| 2018-08-24 | After removing support for broken PKCS#8 formats (it was high time), |  tb | 1 | -2/+2 |
| 2018-06-12 | zap stray tab |  sthen | 1 | -2/+2 |
| 2018-06-12 | Reject excessively large primes in DH key generation. Problem reported |  sthen | 1 | -1/+6 |
| 2018-05-02 | Remove incorrect NULL checks in DH_set0_key(). |  tb | 1 | -5/+1 |
| 2018-05-01 | Convert a handful of X509_*() functions to take const as in OpenSSL. |  tb | 1 | -5/+5 |
| 2018-04-14 | make ENGINE_finish() succeed on NULL and simplify callers as in |  tb | 1 | -10/+6 |
| 2018-02-22 | Provide DH_get0_engine(). |  jsing | 2 | -2/+9 |
| 2018-02-20 | Fix bogus check. Spotted by brynet, thanks. |  tb | 1 | -2/+4 |
| 2018-02-20 | Provide DH_set_length() |  tb | 2 | -2/+12 |
| 2018-02-20 | Provide DH_bits() |  tb | 2 | -2/+9 |
| 2018-02-20 | Provide DH_{clear,set,test}_flags(). |  tb | 2 | -2/+23 |
| 2018-02-18 | Provide {DH,DSA}_set0_key(). Requested by sthen. |  tb | 2 | -2/+22 |
| 2018-02-18 | Provide DH_set0_pqg. |  tb | 2 | -2/+25 |
| 2018-02-17 | Provide further parts of the OpenSSL 1.1 API: {DH,DSA}_get0_{key,pqg}(), |  tb | 2 | -2/+26 |
| 2017-01-29 | Send the function codes from the error functions to the bit bucket, |  beck | 7 | -55/+38 |
| 2017-01-21 | Make explicit _ct and _nonct versions of bn_mod_exp funcitons that |  beck | 1 | -2/+4 |
| 2016-12-30 | Expand ASN1_ITEM_rptr macro - no change in generated assembly. |  jsing | 1 | -2/+2 |
| 2016-11-04 | Kill a bunch of OLD_ASN1 usage by replacing ASN1_{d2i,i2d}_* with |  jsing | 2 | -8/+30 |
| 2016-07-07 | call BN_init on temporaries to avoid use-before-set warnings |  bcook | 1 | -1/+2 |
| 2016-07-05 | On systems where we do not have BN_ULLONG defined (most 64-bit systems), |  bcook | 1 | -1/+5 |
| 2016-06-30 | Remove flags for disabling constant-time operations. |  bcook | 2 | -34/+12 |
| 2015-02-14 | Expand ASN1_CHOICE*, ASN1_SEQUENCE* and associated macros, making the |  jsing | 1 | -6/+42 |
| 2015-02-11 | Enable building with -DOPENSSL_NO_DEPRECATED. |  doug | 1 | -1/+2 |
| 2015-02-10 | Expand the -IMPLEMENT_ASN1_ENCODE_FUNCTIONS_(const_)?fname macros so that |  jsing | 1 | -2/+14 |
| 2015-02-09 | BN_CTX_get() can fail - consistently check its return value. |  jsing | 2 | -6/+7 |
| 2015-02-09 | This is neither code not proper documentation. |  miod | 7 | -157/+0 |
| 2015-02-07 | Delete a lot of #if 0 code in libressl. |  doug | 2 | -16/+2 |
| 2015-01-08 | Avoid a double-free in an error path. |  doug | 1 | -1/+2 |
| 2014-10-18 | None of these need to include <openssl/rand.h> |  jsing | 1 | -2/+1 |
| 2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). |  miod | 4 | -30/+17 |
| 2014-07-11 | Only import cryptlib.h in the four source files that actually need it. |  jsing | 9 | -26/+31 |
| 2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references |  jsing | 3 | -4/+12 |
| 2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that |  jsing | 1 | -2/+4 |
| 2014-07-09 | ASN1_STRING_free can handle NULL, so callers don't need to check. ok miod |  tedu | 1 | -7/+4 |
| 2014-07-09 | Simplify error path of DH_check_pub_key() |  miod | 1 | -8/+4 |
| 2014-07-09 | KNF |  miod | 9 | -563/+595 |
| 2014-07-09 | remove unused, private version strings except SSL_version_str |  bcook | 1 | -3/+1 |
| 2014-06-30 | simplify and unobfuscate a variable to fix a mem leak. |  tedu | 1 | -6/+9 |
| 2014-06-12 | replace atoi() calls with strtol(). Follow the idiomatic pattern in our |  deraadt | 1 | -12/+30 |
| 2014-06-12 | tags as requested by miod and tedu |  deraadt | 11 | -9/+11 |