| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove DEBUG_PKCS5V2 code. | miod | 2015-02-14 | 1 | -25/+1 |
* | Enable building with -DOPENSSL_NO_DEPRECATED. | doug | 2015-02-11 | 2 | -2/+4 |
* | unifdef OPENSSL_NO_RC5 | jsing | 2015-02-10 | 3 | -29/+3 |
* | Remove RC5 code - this is not currently enabled and is not likely to ever | jsing | 2015-02-10 | 1 | -128/+0 |
* | EVP_BytesToKey(): return through the error path (which cleans things up) | miod | 2015-02-10 | 1 | -3/+3 |
* | Replace assert() and OPENSSL_assert() calls with proper error return paths. | miod | 2015-02-10 | 8 | -30/+87 |
* | Remove unnecessary include of assert.h | miod | 2015-02-10 | 2 | -4/+2 |
* | Move a few typedef up in this file in order to be able to use them in env_md_st | miod | 2015-02-08 | 1 | -14/+10 |
* | Check memory allocation results in EVP_PBE_alg_add_type(). | miod | 2015-02-08 | 1 | -3/+10 |
* | Delete a lot of #if 0 code in libressl. | doug | 2015-02-07 | 4 | -60/+4 |
* | Combine c_allc.c and c_alld.c into c_all.c - there is not much point having | jsing | 2015-02-07 | 3 | -361/+230 |
* | More missing error checks I forgot to commit last week, part of the large | miod | 2014-11-18 | 1 | -12/+23 |
* | KNF (when not conflicting with other cleanup changes in progress) | miod | 2014-11-09 | 4 | -44/+61 |
* | GOST crypto algorithms (well, most of them), ported from the removed GOST | miod | 2014-11-09 | 8 | -5/+594 |
* | Introduce EVP_MD_CTX_ctrl(), to allow for fine control of a given digest. | miod | 2014-11-09 | 1 | -1/+25 |
* | Check the result of sk_*_push() operations for failure. | miod | 2014-10-28 | 1 | -4/+8 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 3 | -12/+10 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 5 | -10/+5 |
* | Guard RSA / RC4-5 ASM when NO_ASM is not defined | bcook | 2014-08-11 | 1 | -2/+2 |
* | Allow B64_EOF to follow a base64 padding character. This restores previous | jsing | 2014-08-06 | 1 | -2/+3 |
* | Correct error checks in EVP_read_pw_string_min(): UI_add_input_string() | guenther | 2014-08-06 | 1 | -3/+3 |
* | In chacha_init(), allow for a NULL iv. Reported by znz on github. | miod | 2014-08-04 | 1 | -2/+3 |
* | Check the return value of the UI functions (including UI_new() which return | miod | 2014-07-23 | 1 | -6/+11 |
* | Now that DES_random_key() can be trusted, use it to generate DES keys in the | miod | 2014-07-22 | 2 | -12/+10 |
* | Possible PBEPARAM leak in the error path. | miod | 2014-07-13 | 1 | -6/+8 |
* | EVP_DigestInit_ex() may be used to recycle an existing EVP_MD_CTX without having | miod | 2014-07-13 | 1 | -3/+9 |
* | No need to include evp_locl.h in there. | miod | 2014-07-13 | 6 | -18/+6 |
* | No need to include asn1_mac.h here. | miod | 2014-07-12 | 1 | -2/+1 |
* | We have EVP_CIPH_FLAG_DEFAULT_ASN1 in evp.h; no need to keep constructs to | miod | 2014-07-12 | 1 | -34/+28 |
* | Make the BLOCK_CIPHER_{generic,custom} macros expand to more readable struct | miod | 2014-07-12 | 1 | -67/+102 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 5 | -16/+11 |
* | OPENSSL_ALGORITHM_DEFINES has been removed from conf.h, no need for it now | tedu | 2014-07-11 | 1 | -8/+2 |
* | Fix copy for CCM, GCM and XTS. | miod | 2014-07-11 | 1 | -12/+70 |
* | In EVP_PBE_alg_add don't use the underlying NID for the cipher | miod | 2014-07-11 | 1 | -2/+2 |
* | Missing initialization; OpenSSL PR#3289 and #3345 via OpenSSL trunk. | miod | 2014-07-11 | 1 | -2/+3 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 47 | -155/+157 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 40 | -53/+155 |
* | Kill a blatantly outdated (and now wrong) comment | miod | 2014-07-10 | 1 | -4/+1 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 14 | -17/+45 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |
* | Remove BIO_f_reliable(), guilty of playing with EVP_MD_CTX internals it | miod | 2014-06-24 | 2 | -627/+1 |
* | Switch to the ISC licensed versions of these files, which Google has made | jsing | 2014-06-21 | 2 | -101/+26 |
* | free iv, then cleanse. from Cyril Jouve | tedu | 2014-06-15 | 1 | -2/+2 |
* | Simplify EVP_MD_CTX_create() by just using calloc(). Also, use 0 rather | jsing | 2014-06-15 | 1 | -9/+4 |
* | Simplify EVP_CIPHER_CTX_new() - stop pretending that EVP_CIPHER_CTX_init() | jsing | 2014-06-15 | 1 | -6/+2 |
* | Add missing OPENSSL_cleanse() in aead_aes_gcm_cleanup(). | jsing | 2014-06-15 | 1 | -1/+2 |
* | The OPENSSL_cleanse() in aes_gcm_cleanup() only cleans the gcm field of the | jsing | 2014-06-15 | 1 | -2/+2 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 60 | -54/+60 |
* | c-file-style hints, begone; ok beck | deraadt | 2014-06-11 | 2 | -2/+2 |
* | Abandon the auto-ENGINE /dev/crypto interface. VIA 3des cbc receives | deraadt | 2014-06-10 | 1 | -3/+0 |