| Commit message (Expand) | Author | Age | Files | Lines |
| * | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 6 | -87/+43 |
| * | Expand ASN1_ITEM_rptr macros - no change in preprocessor output. | jsing | 2016-12-30 | 1 | -6/+6 |
| * | Expand ASN1_ITEM_rptr macros - no change in generated assembly. | jsing | 2016-12-30 | 2 | -4/+4 |
| * | Remove all DECLARE_ASN1_SET_OF macro usage - since 2000 these have been | jsing | 2016-12-27 | 1 | -3/+1 |
| * | Kill some #if 0 code that uses old-style ASN.1 encoding. | jsing | 2016-12-27 | 1 | -45/+1 |
| * | rewrite OCSP_parse_url to be sligthly less nasty and not have one byte buffer... | beck | 2016-12-21 | 1 | -78/+34 |
| * | Check BIO_new*() for failure. | miod | 2016-11-05 | 1 | -2/+5 |
| * | X509_STORE_CTX_set_*() may fail, so check for errors. | miod | 2016-11-05 | 1 | -4/+14 |
| * | Kill a bunch of OLD_ASN1 usage by replacing ASN1_{d2i,i2d}_* with | jsing | 2016-11-04 | 2 | -15/+30 |
| * | make public ASN1_time_parse and ASN1_time_tm_cmp to replace former hidden | beck | 2016-11-04 | 1 | -10/+7 |
| * | Expand DECLARE_ASN1_.*FUNCTIONS macros. | jsing | 2016-09-04 | 1 | -17/+81 |
| * | Clean up OCSP_check_validity() a bit more. | beck | 2016-07-16 | 1 | -11/+10 |
| * | remove unneeded duplicate call - spotted by jsing@ | beck | 2016-07-05 | 1 | -3/+1 |
| * | Add several fixes from OpenSSL to make OCSP work with intermediate | beck | 2016-07-05 | 1 | -10/+24 |
| * | Fix from kinichiro.inoguchi@gmail.com to ensure that OCSP uses | beck | 2016-06-25 | 1 | -2/+2 |
| * | Fix the ocsp code to actually check for errors when comparing time values | beck | 2016-06-25 | 1 | -7/+31 |
| * | Use ASN1_item_dup() instead of ASN1_dup(). | jsing | 2015-09-26 | 1 | -4/+3 |
| * | Expand ASN.1 template macros - no change in generated assembly. | jsing | 2015-07-25 | 1 | -76/+496 |
| * | Drop stupid (int) casts for the arguments of malloc() and friends. This is | miod | 2015-07-19 | 1 | -3/+3 |
| * | Check return value of all used functions in OCSP_REQUEST_print(); covers | miod | 2015-07-16 | 1 | -5/+9 |
| * | Manually expand ASN1_ITEM_rptr macros that should have been expanded with | jsing | 2015-02-10 | 1 | -2/+2 |
| * | Expand the IMPLEMENT_ASN1_DUP_FUNCTION macro so that the code is visible | jsing | 2015-02-10 | 1 | -2/+7 |
| * | Expand the IMPLEMENT_ASN1_FUNCTIONS macro so that the code is visible and | jsing | 2015-02-09 | 1 | -16/+376 |
| * | Check the result of sk_*_push() operations for failure. | miod | 2014-10-28 | 1 | -2/+5 |
| * | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | jsing | 2014-10-22 | 1 | -3/+3 |
| * | None of these need to include <openssl/rand.h> | jsing | 2014-10-18 | 3 | -6/+3 |
| * | Use string literals in printf style calls so gcc's -Wformat works. | doug | 2014-10-03 | 1 | -8/+4 |
| * | BIO_free() returns immediately when the sole input is NULL. | doug | 2014-07-25 | 1 | -3/+2 |
| * | The bell tolls for BUF_strdup - Start the migration to using | beck | 2014-07-13 | 1 | -6/+6 |
| * | Principle of least surprise: make CMAC_CTX_free(), OCSP_REQ_CTX_free() and | miod | 2014-07-12 | 1 | -1/+4 |
| * | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 4 | -16/+17 |
| * | Explicitly include <openssl/opensslconf.h> in every file that references | jsing | 2014-07-10 | 2 | -2/+7 |
| * | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 2 | -4/+8 |
| * | reset host, port, path to null after freeing so the caller doesn't | tedu | 2014-07-09 | 1 | -1/+4 |
| * | ocsp_check_ids says "If algoritm mismatch let caller deal with it" before | tedu | 2014-07-09 | 1 | -6/+1 |
| * | tags as requested by miod and tedu | deraadt | 2014-06-12 | 10 | -10/+10 |
| * | no need for null check before free. from Brendan MacDonell | tedu | 2014-05-30 | 1 | -2/+1 |
| * | Not OPENSSL_SYS_SUNOS. | jsing | 2014-05-23 | 1 | -3/+0 |
| * | Plug memory leaks upon error in OCSP_url_svcloc_new(). | miod | 2014-05-18 | 1 | -6/+9 |
| * | In OCSP_sendreq_bio(), cope with OCSP_sendreq_new() returning NULL. | miod | 2014-05-18 | 1 | -4/+6 |
| * | More KNF. | jsing | 2014-05-18 | 10 | -193/+208 |
| * | unchecked malloc() return value in OCSP_sendreq_new(). | miod | 2014-05-17 | 1 | -0/+2 |
| * | KNF | miod | 2014-05-17 | 8 | -1274/+1332 |
| * | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | beck | 2014-04-26 | 2 | -5/+5 |
| * | Put the final pieces from e_os.h in the required places, and remove it. | deraadt | 2014-04-18 | 1 | -1/+0 |
| * | fix some more leaks, mostly suggestions from miod | jsg | 2014-04-17 | 1 | -0/+3 |
| * | fix some of the leaks | jsg | 2014-04-17 | 1 | -3/+11 |
| * | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 3 | -15/+15 |
| * | we don't use these files for building | tedu | 2014-04-15 | 1 | -78/+0 |
| * | remove auto-generated dependencies from the old unused build system, so | deraadt | 2014-04-14 | 1 | -135/+0 |