Age | Commit message (Expand) | Author |
2016-12-21 | Explicitly export a list of symbols from libcrypto. | Joel Sing |
2016-10-19 | unifdef OPENSSL_NO_CMS | Joel Sing |
2016-09-04 | Expand DECLARE_ASN1_.*FUNCTIONS macros. | Joel Sing |
2016-09-02 | missing space after comma | Theo Buehler |
2016-07-07 | call BN_init on temporaries to avoid use-before-set warnings | Brent Cook |
2016-06-30 | Remove flags for disabling constant-time operations. | Brent Cook |
2015-12-03 | Fix for OpenSSL CVE-2015-3194 | Bob Beck |
2015-09-30 | Replace M_ASN1_OCTET_STRING_(free|new) with ASN1_OCTET_STRING_(free|new). | Joel Sing |
2015-09-10 | Correct spelling of OPENSSL_cleanse. | Joel Sing |
2015-07-19 | Drop stupid (int) casts for the arguments of malloc() and friends. This is | Miod Vallat |
2015-06-20 | Replace remaining CRYPTO_memcmp() calls with timingsafe_memcmp(). | Joel Sing |
2015-06-20 | Remove obsolete MDC-2DES from libcrypto. | Doug Hogan |
2015-06-13 | Fix bad indenting in LibreSSL. | Doug Hogan |
2015-02-15 | Regen | Miod Vallat |
2015-02-14 | Check for allocation error in RSA_eay_mod_exp(). Coverity CID 25217. | Miod Vallat |
2015-02-14 | Expand ASN1_CHOICE*, ASN1_SEQUENCE* and associated macros, making the | Joel Sing |
2015-02-11 | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | Bob Beck |
2015-02-11 | get rid of OPENSSL_NO_CMS code we do not use. | Bob Beck |
2015-02-11 | Enable building with -DOPENSSL_NO_DEPRECATED. | Doug Hogan |
2015-02-10 | Expand the -IMPLEMENT_ASN1_ENCODE_FUNCTIONS_(const_)?fname macros so that | Joel Sing |
2015-02-09 | Expand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible and | Joel Sing |
2015-02-09 | BN_CTX_get() can fail - consistently check its return value. | Joel Sing |
2014-10-22 | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | Joel Sing |
2014-10-18 | None of these need to include <openssl/rand.h> | Joel Sing |
2014-07-13 | Make sure all error conditions in RSA_padding_add_PKCS1_PSS_mgf1() cause | Miod Vallat |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-11 | In RSA_eay_private_encrypt(), correctly return the smaller BN; OpenSSL | Miod Vallat |
2014-07-11 | Remove duplicate 0x for salt len in output; Martin Kaiser via OpenSSL trunk. | Miod Vallat |
2014-07-11 | Only import cryptlib.h in the four source files that actually need it. | Joel Sing |
2014-07-10 | Explicitly include <openssl/opensslconf.h> in every file that references | Joel Sing |
2014-07-10 | Stop including standard headers via cryptlib.h - pull in the headers that | Joel Sing |
2014-07-10 | RSA_setup_blinding() gets a BN with BN_CTX_get(), returns `out of memory' | Miod Vallat |
2014-07-10 | Tweak some comments. We do not really need to know that "New!" flags were | Joel Sing |
2014-07-10 | Stop playing with the RSA_FLAG_BLINDING flag. It does nothing. | Joel Sing |
2014-07-10 | delete some casts. ok miod | Ted Unangst |
2014-07-10 | Remove RSA_FLAG_NO_EXP_CONSTTIME, which was deprecated 12+ years ago. | Joel Sing |
2014-07-10 | BN_free, BN_clear_free, BN_CTX_free, BN_BLINDING_free and BN_MONT_CTX_free | Joel Sing |
2014-07-10 | Use a while loop instead of an ifdowhile loop. | Joel Sing |
2014-07-09 | ASN1_STRING_free can handle NULL, so callers don't need to check. ok miod | Ted Unangst |
2014-07-09 | Make comments readable. | Joel Sing |
2014-07-09 | More KNF. | Joel Sing |
2014-07-09 | KNF. | Joel Sing |
2014-07-09 | Unifdef -UPKCS_TESTVECT - we don't want the random data used in OAEP padding | Miod Vallat |
2014-07-09 | remove unused, private version strings except SSL_version_str | Brent Cook |
2014-07-09 | Be more strict in RSA_padding_check_X931(), and thus avoid a possible | Miod Vallat |
2014-07-09 | In the old days (not in this century), SSLeay 0.4.5 would create X.509 RSA | Miod Vallat |
2014-07-09 | Remove RSA_memory_lock(). This undocumented function sort-of serializes your | Miod Vallat |
2014-07-09 | RSA_NULL used to be a compile option allowing the RSA interfaces to be | Miod Vallat |
2014-07-09 | KNF | Miod Vallat |
2014-06-12 | replace atoi() calls with strtol(). Follow the idiomatic pattern in our | Theo de Raadt |