| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | Use C99 initialisers for EVP_MD structs, for clarity, grepability and to | jsing | 2014-06-10 | 11 | -180/+266 |
* | Remove various test stubs. The good ones have been moved by jsing | deraadt | 2014-06-07 | 2 | -35/+0 |
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 5 | -5/+5 |
* | remove CONST_STRICT. ok beck deraadt | tedu | 2014-05-30 | 1 | -5/+1 |
* | no need for null check before free. from Brendan MacDonell | tedu | 2014-05-30 | 1 | -2/+1 |
* | Implement an improved version of the EVP AEAD API. The | jsing | 2014-05-26 | 5 | -106/+109 |
* | calloc instead of malloc/memset. from Benjamin Baier | tedu | 2014-05-25 | 1 | -3/+1 |
* | Convert OPENSSL_malloc stuff back to intrinsics, a few were missed | beck | 2014-05-22 | 2 | -4/+4 |
* | no no md2 | tedu | 2014-05-17 | 1 | -3/+0 |
* | no no seed | tedu | 2014-05-17 | 2 | -17/+0 |
* | When OPENSSL_LOAD_CONF was added it ended up with more #if 0 code, | jsing | 2014-05-16 | 3 | -94/+14 |
* | More KNF. | jsing | 2014-05-15 | 4 | -7/+7 |