Age | Commit message (Expand) | Author |
2016-11-04 | Rename ssl3_get_key_exchange() to ssl3_get_server_key_exchange(), since | Joel Sing |
2016-11-04 | The *_method_data structures can be static | Philip Guenther |
2016-03-11 | X509_free(3) is NULL-safe, so remove NULL checks before its calls. | Michael McConville |
2015-09-12 | Remove most of the SSLv3 version checks and a few TLS v1.0. | Doug Hogan |
2015-09-12 | Uncopy and unpaste dtls1_send_client_verify() - the | Joel Sing |
2015-09-12 | Uncopy and unpaste dtls1_send_client_key_exchange() - the | Joel Sing |
2015-09-11 | Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a | Joel Sing |
2015-09-11 | Replace dtls1_send_finished() with ssl3_send_finished() - they're now | Joel Sing |
2015-09-10 | Remove support for DTLS_BAD_VER. We do not support non-standard and | Joel Sing |
2015-09-10 | Correct spelling of OPENSSL_cleanse. | Joel Sing |
2015-09-02 | Replace dtls1_client_hello() with ssl3_client_hello() - both are basically | Joel Sing |
2015-07-15 | Flense out dead code, we don't do ecdhe_clnt_cert. | Bob Beck |
2015-07-14 | Convert dtls1_get_hello_verify to CBS. | Doug Hogan |
2015-06-13 | Fix bad indenting in LibreSSL. | Doug Hogan |
2015-03-27 | Factor out the init_buf initialisation code, rather than duplicating it | Joel Sing |
2015-02-09 | Jettison DTLS over SCTP. | Joel Sing |
2015-02-06 | Bring back the horrible API that is get_cipher_by_char/put_cipher_by_char. | Joel Sing |
2014-12-14 | Convert all of the straight forward client handshake handling code to use | Joel Sing |
2014-12-10 | ssl3_init_finished_mac() calls BIO_new() which can fail since it in turn | Joel Sing |
2014-12-06 | Remove client handling of RSA in ServerKeyExchange messages, along with | Joel Sing |
2014-11-27 | Avoid a NULL dereference in the DTLS client that can be triggered by a | Joel Sing |
2014-11-16 | Sort and group includes. | Joel Sing |
2014-10-18 | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | Joel Sing |
2014-09-07 | Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, | Joel Sing |
2014-08-10 | Since we no longer need to support SSLv2-style cipher lists, start | Joel Sing |
2014-08-07 | Oops, revert changes commited by mistake. The previous commit was supposed | Miod Vallat |
2014-08-07 | When you expect a function to return a particular value, don't put a comment | Miod Vallat |
2014-07-12 | The correct name for EDH is DHE, likewise EECDH should be ECDHE. | Joel Sing |
2014-07-12 | Remove remnants from PSK, KRB5 and SRP. | Joel Sing |
2014-07-11 | As reported by David Ramos, most consumer of ssl_get_message() perform late | Miod Vallat |
2014-07-11 | Remove the PSK code. We don't need to drag around this | Bob Beck |
2014-07-10 | decompress libssl. ok beck jsing | Ted Unangst |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-07 | http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2016265dfbab162ec... | Theo de Raadt |
2014-06-07 | The DH_free, EC_KEY_free, EVP_PKEY_free and RSA_free functions all have | Joel Sing |
2014-05-31 | More KNF. | Joel Sing |
2014-05-31 | TLS would not be entirely functional without extensions, so unifdef | Joel Sing |
2014-05-30 | remove some #if 0 code. we don't need any more reminders that we're using | Ted Unangst |
2014-05-29 | unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them. | Ted Unangst |
2014-05-28 | There is no point in checking if a pointer is non-NULL before calling free, | Joel Sing |
2014-05-24 | DeIMPLEMENT libssl. Expand the IMPLEMENT_* macros since it is far more | Joel Sing |
2014-05-05 | Remove SRP and Kerberos support from libssl. These are complex protocols | Ted Unangst |
2014-04-23 | Unifdef -UPKCS1_CHECK and remove SSL_OP_PKCS1_CHECK_[12], this is leftover | Miod Vallat |
2014-04-21 | more malloc/realloc/calloc cleanups; ok beck kettenis | Theo de Raadt |
2014-04-19 | More KNF and style consistency tweaks | Philip Guenther |
2014-04-17 | no longer need to fool emacs indentation and other if (0) oddities. | Ted Unangst |
2014-04-17 | always build in RSA and DSA. ok deraadt miod | Ted Unangst |
2014-04-17 | Change library to use intrinsic memory allocation functions instead of | Bob Beck |
2014-04-14 | make OPENSSL_NO_HEARTBLEED the default and only option. ok deraadt miod | Ted Unangst |
2014-04-14 | So the OpenSSL codebase does "get the time, add it as a random seed" | Theo de Raadt |