summaryrefslogtreecommitdiff
path: root/lib/libcrypto/evp
AgeCommit message (Expand)Author
2016-05-04revert the big change from yesterday to prepare for smaller commits.Ted Unangst
2016-05-03prefer limits.h over sys/limits.hBrent Cook
2016-05-03patch from openssl for multiple issues:Ted Unangst
2016-04-28Rename EVP_aead_chacha20_poly1305() to EVP_aead_chacha20_poly1305_old()Joel Sing
2016-04-13Use the correct iv and counter when decrypting the ciphertext forJoel Sing
2015-12-14initialize md_len to 0 for readability to quell warnings.Bob Beck
2015-11-02Fix typo in comment of previous commit: "that that".Reyk Floeter
2015-11-02Add EVP_aead_chacha20_poly1305_ietf() - The informational RFC 7539,Reyk Floeter
2015-10-12unifdef EVP_CHECK_DES_KEY: Ben Kaduk noticed it has a syntax error; thatPhilip Guenther
2015-09-14Temporarily revive MD4 for MS CHAP support.Doug Hogan
2015-09-13Remove MD4 support from LibreSSL.Doug Hogan
2015-09-13Remove SHA-0 support.Doug Hogan
2015-09-10Correct spelling of OPENSSL_cleanse.Joel Sing
2015-06-20Replace remaining CRYPTO_memcmp() calls with timingsafe_memcmp().Joel Sing
2015-06-20Remove obsolete MDC-2DES from libcrypto.Doug Hogan
2015-02-15RegenMiod Vallat
2015-02-141.18 would introduce a possible out-of-bounds access in the error path;Miod Vallat
2015-02-14Remove DEBUG_PKCS5V2 code.Miod Vallat
2015-02-11Enable building with -DOPENSSL_NO_DEPRECATED.Doug Hogan
2015-02-10unifdef OPENSSL_NO_RC5Joel Sing
2015-02-10Remove RC5 code - this is not currently enabled and is not likely to everJoel Sing
2015-02-10EVP_BytesToKey(): return through the error path (which cleans things up)Miod Vallat
2015-02-10Replace assert() and OPENSSL_assert() calls with proper error return paths.Miod Vallat
2015-02-10Remove unnecessary include of assert.hMiod Vallat
2015-02-08Move a few typedef up in this file in order to be able to use them in env_md_stMiod Vallat
2015-02-08Check memory allocation results in EVP_PBE_alg_add_type().Miod Vallat
2015-02-07Delete a lot of #if 0 code in libressl.Doug Hogan
2015-02-07Combine c_allc.c and c_alld.c into c_all.c - there is not much point havingJoel Sing
2014-11-18More missing error checks I forgot to commit last week, part of the largeMiod Vallat
2014-11-09KNF (when not conflicting with other cleanup changes in progress)Miod Vallat
2014-11-09GOST crypto algorithms (well, most of them), ported from the removed GOSTMiod Vallat
2014-11-09Introduce EVP_MD_CTX_ctrl(), to allow for fine control of a given digest.Miod Vallat
2014-10-28Check the result of sk_*_push() operations for failure.Miod Vallat
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-08-11Guard RSA / RC4-5 ASM when NO_ASM is not definedBrent Cook
2014-08-06Allow B64_EOF to follow a base64 padding character. This restores previousJoel Sing
2014-08-06Correct error checks in EVP_read_pw_string_min(): UI_add_input_string()Philip Guenther
2014-08-04In chacha_init(), allow for a NULL iv. Reported by znz on github.Miod Vallat
2014-07-23Check the return value of the UI functions (including UI_new() which returnMiod Vallat
2014-07-22Now that DES_random_key() can be trusted, use it to generate DES keys in theMiod Vallat
2014-07-13Possible PBEPARAM leak in the error path.Miod Vallat
2014-07-13EVP_DigestInit_ex() may be used to recycle an existing EVP_MD_CTX without havingMiod Vallat
2014-07-13No need to include evp_locl.h in there.Miod Vallat
2014-07-12No need to include asn1_mac.h here.Miod Vallat
2014-07-12We have EVP_CIPH_FLAG_DEFAULT_ASN1 in evp.h; no need to keep constructs toMiod Vallat
2014-07-12Make the BLOCK_CIPHER_{generic,custom} macros expand to more readable structMiod Vallat
2014-07-12if (x) FOO_free(x) -> FOO_free(x).Miod Vallat
2014-07-11OPENSSL_ALGORITHM_DEFINES has been removed from conf.h, no need for it nowTed Unangst
2014-07-11Fix copy for CCM, GCM and XTS.Miod Vallat