summaryrefslogtreecommitdiff
path: root/lib/libssl
AgeCommit message (Expand)Author
2014-09-22Refactor and simplify the ECC extension handling. The existing codeJoel Sing
2014-09-22Also check the result from final_finish_mac() against finish_mac_length inJoel Sing
2014-09-22It is possible (although unlikely in practice) for peer_finish_md_len toJoel Sing
2014-09-21Move the TLS padding extension under an SSL_OP_TLSEXT_PADDING option, whichJoel Sing
2014-09-19Add CHACHA20 as a cipher symmetric encryption alias.Joel Sing
2014-09-19remove obfuscating parens. man operator is your friend.Ted Unangst
2014-09-07Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them,Joel Sing
2014-08-24Replace the remaining uses of ssl3_put_cipher_by_char() with s2n and aJoel Sing
2014-08-23Remove non-standard GOST cipher suites (which are not compiled inJoel Sing
2014-08-23Replace the remaining ssl3_get_cipher_by_char() calls with n2s() andJoel Sing
2014-08-11Check the return value of sk_SSL_CIPHER_new_null(), since it allocatesJoel Sing
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