| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Make sure stdio functions don't end up in the library, from miod@ | beck | 2016-03-06 | 7 | -15/+39 |
* | graduate bn_expand() to a real function. the openssl version of this | deraadt | 2016-03-04 | 4 | -8/+32 |
* | Revert bn_expand until there's consensus on a fix. | doug | 2016-03-04 | 2 | -28/+6 |
* | fix the rest of the read_ledword() calls used as lengths to be bounded. | beck | 2016-03-02 | 2 | -2/+10 |
* | Add bounds checking for BN_hex2bn/BN_dec2bn. | doug | 2016-03-02 | 4 | -20/+52 |
* | bound lengths coming out of a pem file to something like reality | beck | 2016-03-02 | 2 | -6/+14 |
* | Remove support for ancient, broken DSA implementations. | doug | 2016-03-01 | 2 | -120/+40 |
* | remove NULL checks for pqueue_free() | mmcc | 2016-02-29 | 2 | -22/+12 |
* | refactor option letter parsing into a subfunction, to increase clarity | deraadt | 2016-02-25 | 1 | -93/+102 |
* | Sync some root certificates with Mozilla's cert store. ok bcook@ | sthen | 2016-02-17 | 1 | -84/+1016 |
* | compare pointer to NULL in example code | mmcc | 2016-02-07 | 1 | -3/+3 |
* | be more forceful about not using these. | espie | 2016-02-05 | 1 | -2/+9 |
* | Fix err(3) calls after allocation failures in examples. | schwarze | 2016-02-05 | 1 | -8/+8 |
* | Sort cert.pem alphabetically, first by organisation, then by CA name | sthen | 2016-02-01 | 1 | -1604/+1584 |
* | Revamp cert.pem certificate information formatting. Skip headers which | sthen | 2016-01-31 | 1 | -2459/+184 |
* | Therefor -> Therefore (where appropriate) | tb | 2016-01-29 | 2 | -2/+2 |
* | deprecate SSL_OP_SINGLE_DH_USElibressl-v2.3.2 | beck | 2016-01-27 | 4 | -74/+12 |
* | Don't crash dumping malloc stats if malloc_init hasn't been called, noted by | otto | 2016-01-26 | 1 | -1/+3 |
* | Call BIO_sock_init() from tls_init() to ensure sockets are enabled on Windows. | bcook | 2016-01-18 | 1 | -1/+4 |
* | Long ago, malloc internally had two kinds of failures, warnings and errors. | tedu | 2016-01-06 | 2 | -14/+7 |
* | Follow style(9) and drop lint /* NOTREACHED */ annotations from | tb | 2016-01-04 | 2 | -6/+4 |
* | Calling clone(2) with CLONE_NEWPID yields multiple processes with pid=1. | bcook | 2016-01-04 | 2 | -4/+6 |
* | Document that the ssl free() functions are NULL safe. OK mmcc@ | millert | 2015-12-30 | 6 | -12/+42 |
* | another case where bad things would happen after wrterror | tedu | 2015-12-30 | 1 | -2/+4 |
* | if somebody makes the mistake of disabling abort, don't deref null in | tedu | 2015-12-30 | 1 | -2/+4 |
* | Remove NULL-checks before free() and a few related dead assignments. | mmcc | 2015-12-28 | 2 | -8/+5 |
* | remove unused variable | chl | 2015-12-27 | 1 | -2/+1 |
* | More adress -> address | mmcc | 2015-12-24 | 4 | -4/+4 |
* | remove NULL-checks before free() | mmcc | 2015-12-23 | 6 | -38/+22 |
* | assign pointer NULL rather than 0 | mmcc | 2015-12-23 | 2 | -4/+4 |
* | assign pointer to NULL rather than 0 | mmcc | 2015-12-23 | 2 | -4/+4 |
* | initialize a pointer to NULL rather than 0 | mmcc | 2015-12-22 | 2 | -4/+4 |
* | gethostbyname2() and gethostbyaddr() need <sys/socket.h>; discussed with | tim | 2015-12-19 | 1 | -6/+8 |
* | Simplify return call of rand() and rand_r() to make it easier to read. | tb | 2015-12-18 | 1 | -2/+2 |
* | tweak previous; | jmc | 2015-12-16 | 2 | -4/+5 |
* | Remove support for HOSTALIASES from the resolver. This "open and parse | deraadt | 2015-12-16 | 2 | -15/+6 |
* | Remove "C=US, O=VeriSign, Inc., OU=Class 3 Public Primary Certification | sthen | 2015-12-15 | 1 | -49/+0 |
* | initialize ext_len to 0. | beck | 2015-12-14 | 2 | -4/+12 |
* | initialize ok to 0 | beck | 2015-12-14 | 2 | -4/+4 |
* | initialize md_len to 0 for readability to quell warnings. | beck | 2015-12-14 | 2 | -6/+6 |
* | s/begining/beginning/g | mmcc | 2015-12-14 | 1 | -2/+2 |
* | decipher comment. ok bcook@ | mmcc | 2015-12-12 | 2 | -4/+4 |
* | move initialization of buf up to quell warnings and make it obvious the err c... | beck | 2015-12-12 | 2 | -8/+10 |
* | prevent possibly use of uninitialized variable | beck | 2015-12-12 | 2 | -4/+4 |
* | make the counter a size_t as well, which quells a warning on visual studio 2015 | beck | 2015-12-12 | 2 | -4/+6 |
* | tiny sanity check on file size | tedu | 2015-12-10 | 1 | -1/+3 |
* | bump the major for libcrypto/ssl/tls for a CRYPTO_chacha_20 ABI change | bcook | 2015-12-09 | 5 | -10/+10 |
* | Change the counter argument for CRYPTO_chacha_20 to be 64-bits on all platforms. | bcook | 2015-12-09 | 4 | -10/+12 |
* | Integrate two patches originally from Daniel Micay. | tedu | 2015-12-09 | 1 | -8/+76 |
* | Add root certificate for COMODO RSA Certification Authority, ok beck@ | sthen | 2015-12-07 | 1 | -0/+122 |