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