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