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