| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add cipher aliases for DHE (the correct name for EDH) and ECDHE (the | jsing | 2014-10-15 | 1 | -3/+5 |
| * | Add support for automatic ephemeral EC keys. | jsing | 2014-10-03 | 1 | -1/+7 |
| * | Add a new API function SSL_CTX_use_certificate_chain() that allows to | reyk | 2014-09-28 | 1 | -1/+2 |
| * | Check that the specified curve is one of the client preferences. | jsing | 2014-09-27 | 1 | -1/+2 |
| * | Move the TLS padding extension under an SSL_OP_TLSEXT_PADDING option, which | jsing | 2014-09-21 | 1 | -2/+5 |
| * | Since we no longer need to support SSLv2-style cipher lists, start | jsing | 2014-08-10 | 1 | -1/+2 |
| * | Provide ssl_version_string() function, which uses one of those modern C | jsing | 2014-07-12 | 1 | -1/+3 |
| * | Remove the PSK code. We don't need to drag around this | beck | 2014-07-11 | 1 | -44/+1 |
| * | Remove more compression tendrils. | jsing | 2014-07-10 | 1 | -3/+1 |
| * | Put back some parts of the public SSL API that should not have been | jsing | 2014-07-10 | 1 | -1/+8 |
| * | decompress libssl. ok beck jsing | tedu | 2014-07-10 | 1 | -36/+1 |
| * | tedu the SSL export cipher handling - since we do not have enabled export | jsing | 2014-07-09 | 1 | -4/+1 |
| * | Add ChaCha20-Poly1305 based ciphersuites. | jsing | 2014-06-13 | 1 | -1/+2 |
| * | Add support for handling SSL_CIPHER_ALGORITHM2_AEAD ciphers, which are | jsing | 2014-06-13 | 1 | -2/+4 |
| * | Add an SSL_AEAD_CTX to enable the use of EVP_AEAD with an SSL cipher. | jsing | 2014-06-13 | 1 | -1/+11 |
| * | Remove support for the `opaque PRF input' extension, which draft has expired | miod | 2014-06-13 | 1 | -14/+1 |
| * | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
| * | Factor out the part of tls1_change_cipher_state() that is specific to | jsing | 2014-06-08 | 1 | -0/+1 |
| * | http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2016265dfbab162ec... | deraadt | 2014-06-07 | 1 | -6/+0 |
| * | ECDH and ECDSA will not work overly well if there is no EC, so unifdef | jsing | 2014-05-31 | 1 | -4/+0 |
| * | TLS would not be entirely functional without extensions, so unifdef | jsing | 2014-05-31 | 1 | -12/+0 |
| * | remove some #if 0 code. we don't need any more reminders that we're using | tedu | 2014-05-30 | 1 | -10/+0 |
| * | Everything sane has stdio, and FILE *. we don't need ifdefs for this. | beck | 2014-05-29 | 1 | -2/+0 |
| * | remove back compat that was already disabled back in 1998. | tedu | 2014-05-29 | 1 | -8/+0 |
| * | Any sane platform has stdio. Stop pretending we will ever use a platform | beck | 2014-05-29 | 1 | -2/+0 |
| * | unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them. | tedu | 2014-05-29 | 1 | -4/+0 |
| * | The ssl_ciper_get_evp() function is currently overloaded to also return the | jsing | 2014-05-25 | 1 | -0/+1 |
| * | Include <openssl/opensslconf.h> - currently ssl.h is relying on it being | jsing | 2014-05-24 | 1 | -1/+2 |
| * | There are two actual uses of e_os2.h in libssl - an OPENSSL_GLOBAL (an | jsing | 2014-05-22 | 1 | -2/+0 |
| * | Remove SRP and Kerberos support from libssl. These are complex protocols | tedu | 2014-05-05 | 1 | -70/+0 |
| * | Nuke OPENSSL_NO_SOCK since any half sane operating system has sockets. | jsing | 2014-05-02 | 1 | -2/+0 |
| * | i suck at math. b - 8 = 3, not 4. detected by Antoine Pitrou. thanks. | tedu | 2014-04-30 | 1 | -1/+1 |
| * | SSL_OP_ALL is supposed to be all options and workarounds that are safe, | tedu | 2014-04-28 | 1 | -4/+6 |
| * | Remove ending cplusplus guard followed by starting cplusplus guard; from | miod | 2014-04-28 | 1 | -7/+0 |
| * | Bring back the SSL_OP_PKCS1_CHECK_* defines (defined to zero, as they already | miod | 2014-04-24 | 1 | -0/+4 |
| * | Unifdef -UPKCS1_CHECK and remove SSL_OP_PKCS1_CHECK_[12], this is leftover | miod | 2014-04-23 | 1 | -8/+0 |
| * | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | guenther | 2014-04-20 | 1 | -13/+7 |
| * | More KNF and style consistency tweaks | guenther | 2014-04-19 | 1 | -3/+2 |
| * | always build in RSA and DSA. ok deraadt miod | tedu | 2014-04-17 | 1 | -6/+0 |
| * | TANSTAAFL - delete the buf freelist code. if you need a better malloc, get | tedu | 2014-04-16 | 1 | -6/+0 |
| * | add back SRP. i was being too greedy. | tedu | 2014-04-16 | 1 | -0/+63 |
| * | disentangle SRP code from TLS | tedu | 2014-04-16 | 1 | -63/+0 |
| * | remove ssl2 support even more completely. | tedu | 2014-04-15 | 1 | -10/+0 |
| * | First pass at applying KNF to the OpenSSL code, which almost makes it | jsing | 2014-04-15 | 1 | -257/+250 |
| * | make OPENSSL_NO_HEARTBLEED the default and only option. ok deraadt miod | tedu | 2014-04-14 | 1 | -10/+0 |
| * | Cope with the removal of openssl/symhacks.h | deraadt | 2014-04-13 | 1 | -1/+0 |
| * | Flense a variety of windows support stuff, and a strange gettimeofday function. | beck | 2014-04-13 | 1 | -4/+0 |
| * | Remove vms support stuff. | beck | 2014-04-13 | 1 | -6/+1 |
| * | Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery. | miod | 2014-04-13 | 1 | -3/+18 |
| * | resolve conflicts | djm | 2012-10-13 | 1 | -22/+291 |