| Commit message (Expand) | Author | Files | Lines |
2018-12-21 | Mention that some functions call BN_GENCB_call(3) with a second | schwarze | 1 | -4/+15 |
2018-12-19 | Correctly describe the return values of BN_hex2bn(3) and BN_dec2bn(3). | schwarze | 1 | -5/+8 |
2018-12-19 | Specify the return values of some of these functions more precisely; | schwarze | 1 | -15/+16 |
2018-12-19 | typo; | schwarze | 1 | -4/+5 |
2018-12-16 | Add regress test for bugs in stdio/fread.c rev 1.13 and 1.17 | millert | 3 | -2/+160 |
2018-12-16 | Regenerate root CA list using updated format-pem.pl. Specifically this | sthen | 1 | -101/+1 |
2018-12-16 | Add a check that libressl is actually able to verify CA certs. | sthen | 1 | -12/+28 |
2018-12-15 | add a -R option to set/unset resolver flags.libressl-v2.9.0 | eric | 9 | -20/+101 |
2018-12-14 | Delete a note taken during the rev. 1.1 man page splite | schwarze | 1 | -5/+2 |
2018-12-10 | Improve speed for the multi-threaded case by reducing lock contention. | otto | 1 | -30/+21 |
2018-12-09 | Keep usage in sync with logic if OPENSSL_NO_DES is set. | tobias | 1 | -1/+3 |
2018-12-09 | style; OK otto | florian | 1 | -3/+3 |
2018-12-07 | Remove an ugly hack in the client certificate verification code that works | tb | 1 | -48/+44 |
2018-12-05 | remove a stray line accidentally left behind in rev. 1.120; | schwarze | 1 | -3/+2 |
2018-12-03 | Send SSL_AD_DECODE alerts in the case of a bad hello request or an | tb | 1 | -7/+7 |
2018-11-30 | Restore function prototype for ASN1_dup, fixing usage on I32LP64 platforms. | jeremy | 1 | -1/+7 |
2018-11-29 | This test does not terminate if malloc conf is preconfigured with | bluhm | 1 | -2/+6 |
2018-11-29 | missed adding tls_default_ca_cert_file here. found by sthen | tedu | 1 | -0/+1 |
2018-11-29 | update for libtls default cert changes. | tedu | 2 | -7/+8 |
2018-11-29 | expose the default cert file as a function, not a define. it's really | tedu | 5 | -10/+24 |
2018-11-29 | Refactor a tangle in ssl3_send_client_verify() into one function for each | tb | 1 | -118/+213 |
2018-11-29 | We're manipulating malloc flags ourselves, start with restting them all. | otto | 1 | -1/+5 |
2018-11-28 | Correct lock initialisation for libcrypto. | jsing | 2 | -16/+55 |
2018-11-28 | This test does not terminate if malloc conf is preconfigured with | bluhm | 1 | -4/+8 |
2018-11-27 | Refactor "find the right pool" code into a function. ok djm@ tb@ | otto | 1 | -65/+34 |
2018-11-25 | spelling; from miod | jmc | 1 | -2/+2 |
2018-11-24 | zap 10 tab leading whitespace before 'struct evp_pkey_ctx_st {' | tb | 1 | -2/+2 |
2018-11-24 | Store and return the locking callbacks, restoring previous behaviour. | jsing | 1 | -6/+12 |
2018-11-21 | Fix DTLS transcript handling for HelloVerifyRequest. | jsing | 4 | -18/+26 |
2018-11-21 | fold the contents of malloc.conf.5 into malloc.3 and sysctl.2, | jmc | 1 | -6/+118 |
2018-11-21 | Introducing malloc_usable_size() was a mistake. While some other | otto | 2 | -105/+5 |
2018-11-20 | Saw a mention somewhere a while back that the gotdata() function in | deraadt | 5 | -144/+27 |
2018-11-19 | Fix compilation on alpha, where DEF_WEAK() really must be paired with | guenther | 1 | -2/+1 |
2018-11-19 | Revert previous - DTLSv1 uses MD5+SHA1 for RSA signature verification. | jsing | 2 | -10/+4 |
2018-11-19 | Revert previous - the default sigalg for RSA key exchange is {sha1,rsa}. | jsing | 1 | -4/+4 |
2018-11-18 | Implement malloc_usable_size(); ok millert@ deraadt@ and jmc@ for the man page | otto | 2 | -6/+108 |
2018-11-17 | Fix DTLS, because DTLS still remains a special flower, allows regress to pass | beck | 2 | -4/+10 |
2018-11-17 | Fix whitespace around assignment operators. | tb | 1 | -7/+7 |
2018-11-16 | revert previous | beck | 1 | -5/+3 |
2018-11-16 | Fix DTLS. Because the DTLS code is strange. I am really coming around to | beck | 1 | -3/+5 |
2018-11-16 | Unbreak legacy ciphers for prior to 1.1 by setting having a legacy | beck | 4 | -10/+22 |
2018-11-15 | Port OpenSSL commit 99540ec79491f59ed8b46b4edf130e17dc907f52 -- mitigation | tb | 1 | -4/+4 |
2018-11-14 | Fix wrong sizeof argument by using 'uint16_t *', with minor nit from tb@, | mestre | 1 | -2/+2 |
2018-11-14 | didn't found -> didn't find. | tb | 1 | -2/+2 |
2018-11-14 | In TLS1.2 we use evp_sha1 if we fall back this far, not evp_md5_sha1 as in 1.1 | beck | 1 | -2/+2 |
2018-11-13 | Temporary workaround for breakage seen in www.videolan.org with curve mismatch | beck | 1 | -3/+4 |
2018-11-13 | Just err if we can't create secrets | beck | 1 | -2/+2 |
2018-11-13 | NULL out mdctx to prevent possible double free introduced in version 1.4 | beck | 1 | -1/+2 |
2018-11-13 | Fix pkey_ok to be less strange, and add cuve checks required for the EC ones | beck | 1 | -9/+26 |
2018-11-12 | Missing initialization for pub_key. CID 184303. | tb | 1 | -2/+2 |