summaryrefslogtreecommitdiff
path: root/lib/libssl
AgeCommit message (Expand)Author
2014-08-11Unchecked memory allocation and potential leak upon error inMiod Vallat
2014-08-11Remove now-unused SSL2_STATE as well as ssl2-specific state machine values.Miod Vallat
2014-08-11Currently, ssl3_put_char_by_bytes(NULL, NULL) is just a long handed wayJoel Sing
2014-08-11Provide a ssl3_get_cipher_by_id() function that allows ciphers to be lookedJoel Sing
2014-08-10Tweak cipher list comments and add missing cipher value comments.Joel Sing
2014-08-10Remove disabled (weakened export and non-ephemeral DH) cipher suites fromJoel Sing
2014-08-10Since we no longer need to support SSLv2-style cipher lists, startJoel Sing
2014-08-08Fix CVE-2014-3507, avoid allocating and then leaking a fresh fragmentPhilip Guenther
2014-08-07Correct test reversed during merge of fix for CVE-2014-3509Philip Guenther
2014-08-07Fix CVE-2014-3506, DTLS handshake message size checks. FromPhilip Guenther
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-08-07Fix CVE-2014-3511; TLS downgrade, verbatim diffTheo de Raadt
2014-08-07merge CVE-2014-3510; Fix DTLS anonymous EC(DH) denial of serviceTheo de Raadt
2014-08-06merge fix for CVE-2014-3509 -- basically a missing s->hit check; ok guentherTheo de Raadt
2014-08-06Prevent a possible use after free by mimicing the s3_srvr.c fixes contributed byMiod Vallat
2014-07-28The RSA, DH, and ECDH temporary key callbacks expect the number of keybitsPhilip Guenther
2014-07-17avoid sys/param.h; Jonas TermansenTheo de Raadt
2014-07-17Missing bounds check in ssl3_get_certificate_request(), was not spotted inMiod Vallat
2014-07-14Fix memory leak upon error in ssl_parse_clienthello_use_srtp_ext().Miod Vallat
2014-07-14whitespaceTheo de Raadt
2014-07-13Stop leaking internal library pointers in error messages.Joel Sing
2014-07-13Explicitly initialise slen - this was not previously done due to a missingJoel Sing
2014-07-13Convert error handling to SSLerr and ERR_asprintf_error_data.Joel Sing
2014-07-13Convert d2i_SSL_SESSION to ASN1 primitives, instead of the horrificJoel Sing
2014-07-13Remove license introduced with the PSK code, which has since been removed.Joel Sing
2014-07-13Another compression remnant.Joel Sing
2014-07-13Expand the tlsext_sigalg macros. The end result is about the same numberJoel Sing
2014-07-13Rewrite i2d_SSL_SESSION to use the ASN1 primitives, rather than using theJoel Sing
2014-07-13The bell tolls for BUF_strdup - Start the migration to usingBob Beck
2014-07-13KNF and some code cleaning.Joel Sing
2014-07-13Another large dose of KNF.Joel Sing
2014-07-12Apply a large dose of KNF.Joel Sing
2014-07-12The correct name for EDH is DHE, likewise EECDH should be ECDHE.Joel Sing
2014-07-12remove double brackets. fixes build with clang.Jonathan Gray
2014-07-12Provide ssl_version_string() function, which uses one of those modern CJoel Sing
2014-07-12Remove extra parenthesis.Joel Sing
2014-07-12need_cert is now always true, so remove the variable and associatedJoel Sing
2014-07-12if (x) FOO_free(x) -> FOO_free(x).Miod Vallat
2014-07-12Remove remnants from PSK, KRB5 and SRP.Joel Sing
2014-07-12Place comments in a block above the if statement, rather than attemptingJoel Sing
2014-07-12Make disabling last cipher work.Philip Guenther
2014-07-12enough churn, a crank is advised by guenther..Theo de Raadt
2014-07-11As reported by David Ramos, most consumer of ssl_get_message() perform lateMiod Vallat
2014-07-11If the application uses tls_session_secret_cb for session resumption, setMiod Vallat
2014-07-11In ssl3_get_cert_verify(), allow for larger messages to accomodate keysMiod Vallat
2014-07-11Accept CCS again after `finished' has been sent by the client; at this pointMiod Vallat
2014-07-11In dtls1_clear_queues(), free buffered_add_data.q correctly, it's made ofMiod Vallat
2014-07-11In ssl3_get_client_key_exchange() parsing a GOST session key, invoke theMiod Vallat
2014-07-11Missing initialization for error line in error paths; from Coverity viaMiod Vallat