| Commit message (Expand) | Author | Age | Files | Lines |
* | Change PEM_Sign{Init,Update}() to return an int. | tb | 2018-08-24 | 2 | -8/+8 |
* | Check return value of EVP_EncodeUpdate() in PEM_write_bio(). | tb | 2018-08-24 | 1 | -2/+3 |
* | Fix memory leak in i2b_PVK in error handling. | bcook | 2018-08-05 | 1 | -14/+10 |
* | Add const qualifier to the 'name', 'header', and 'data' arguments of | tb | 2018-05-13 | 2 | -9/+10 |
* | make ENGINE_finish() succeed on NULL and simplify callers as in | tb | 2018-04-14 | 1 | -3/+2 |
* | use freezero() instead of memset/explicit_bzero + free. Substantially | deraadt | 2017-05-02 | 3 | -19/+8 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 9 | -154/+95 |
* | Make explicit _ct and _nonct versions of bn_mod_exp funcitons that | beck | 2017-01-21 | 1 | -2/+4 |
* | Make sure PEM_SealInit() will correctly destroy the PEM_ENCODE_SEAL_CTX | miod | 2016-11-05 | 1 | -8/+22 |
* | unifdef OPENSSL_NO_CMS | jsing | 2016-10-19 | 1 | -10/+1 |
* | Place IMPLEMENT_PEM macros under #ifndef LIBRESSL_INTERNAL. | jsing | 2016-09-04 | 1 | -2/+4 |
* | Sort and group functions. | jsing | 2016-09-04 | 4 | -238/+215 |
* | Expand IMPLEMENT_PEM macros. | jsing | 2016-09-04 | 4 | -30/+545 |
* | fix the rest of the read_ledword() calls used as lengths to be bounded. | beck | 2016-03-02 | 1 | -1/+5 |
* | bound lengths coming out of a pem file to something like reality | beck | 2016-03-02 | 1 | -3/+7 |
* | Correct spelling of OPENSSL_cleanse. | jsing | 2015-09-10 | 6 | -25/+26 |
* | Drop stupid (int) casts for the arguments of malloc() and friends. This is | miod | 2015-07-19 | 1 | -2/+2 |
* | Make sure the `reject negative sizes' logic introduced in 1.34 is actually | miod | 2015-07-16 | 1 | -3/+4 |
* | Fix return paths with missing EVP_CIPHER_CTX_cleanup() calls. | jsg | 2015-05-15 | 1 | -7/+5 |
* | Guenther has plans for OPENSSL_NO_CMS, so revert this for the moment. | beck | 2015-02-11 | 1 | -1/+10 |
* | get rid of OPENSSL_NO_CMS code we do not use. | beck | 2015-02-11 | 1 | -10/+1 |
* | Enable building with -DOPENSSL_NO_DEPRECATED. | doug | 2015-02-11 | 2 | -2/+4 |
* | Replace assert() and OPENSSL_assert() calls with proper error return paths. | miod | 2015-02-10 | 2 | -7/+17 |
* | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 2 | -8/+6 |
* | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 5 | -10/+5 |
* | Make sure PEM_def_callback() correctly handles negative buffer sizes; all uses | miod | 2014-07-23 | 1 | -10/+17 |
* | if (x) FOO_free(x) -> FOO_free(x). | miod | 2014-07-12 | 3 | -21/+12 |
* | Missing bounds check in do_PVK_body(); OpenSSL RT #2277, from OpenSSL trunk, | miod | 2014-07-11 | 1 | -4/+10 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 11 | -53/+61 |
* | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 7 | -7/+22 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 5 | -7/+17 |
* | delete some casts. ok miod | tedu | 2014-07-10 | 1 | -2/+2 |
* | Missing allocation checks and potential NULL pointer dereference in the | miod | 2014-07-10 | 1 | -7/+15 |
* | remove unused, private version strings except SSL_version_str | bcook | 2014-07-09 | 1 | -3/+1 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 14 | -12/+14 |
* | malloc() result does not need a cast. | deraadt | 2014-06-07 | 3 | -3/+3 |
* | Avoid the use of an uninitialised variable. In reality, this is a non-issue | jsing | 2014-06-01 | 1 | -2/+1 |
* | more: no need for null check before free | deraadt | 2014-05-30 | 3 | -18/+9 |
* | convert 53 malloc(a*b) to reallocarray(NULL, a, b). that is 53 | deraadt | 2014-05-29 | 2 | -3/+3 |
* | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 6 | -45/+0 |
* | We don't really to keep history in constructs such as: | miod | 2014-05-26 | 1 | -6/+0 |
* | Almost nothing actually needs to include <openssl/e_os2.h>, however by | jsing | 2014-05-24 | 1 | -1/+2 |
* | if (x) free(x) -> free(x); semantic patch generated with coccinelle, carefully | miod | 2014-05-22 | 1 | -2/+1 |
* | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | beck | 2014-04-26 | 1 | -1/+1 |
* | Unifdef -UPEDANTIC. ok beck@ tedu@ | miod | 2014-04-23 | 1 | -6/+0 |
* | More KNF. | jsing | 2014-04-21 | 4 | -8/+8 |
* | KNF. | jsing | 2014-04-21 | 14 | -1570/+1612 |
* | Restore beck's rev 1.7: snprintf() was reviewed. | guenther | 2014-04-20 | 1 | -2/+4 |
* | We'll interpret a (void) cast on snprintf() to mean it's been verified that | guenther | 2014-04-19 | 1 | -2/+2 |
* | use intrinsic strlcpy and strlcat everywhere so we only have one set of | beck | 2014-04-19 | 1 | -6/+6 |