Age | Commit message (Expand) | Author |
2017-02-21 | Remove STREEBOG 512 as a TLS MAC since there are currently no cipher suites | Joel Sing |
2017-02-15 | Avoid dereferencing a pointer when reporting an error about the same | Joel Sing |
2017-02-07 | Change SSLerror() back to taking two args, with the first one being an SSL *. | Bob Beck |
2017-02-05 | Define values for SSL_CTRL_SET_GROUPS{,_LIST} and wire them up to the | Joel Sing |
2017-01-31 | Provide an SSL_OP_NO_CLIENT_RENEGOTIATION option that disallows | Joel Sing |
2017-01-29 | Send the function codes from the error functions to the bit bucket, | Bob Beck |
2017-01-29 | Put comment back in the right place. | Joel Sing |
2017-01-29 | Avoid clearing the mac_packet flag in the wrong place. | Joel Sing |
2017-01-26 | knf | Bob Beck |
2017-01-26 | Convert ssl3_get_client_hello() to CBS. | Joel Sing |
2017-01-26 | Finish the fallout of the SSLerr->SSLerror cleanup to get rid of the ugly | Bob Beck |
2017-01-26 | Send the error function codes to rot in the depths of hell where they belong | Bob Beck |
2017-01-26 | Merge the single two line function from ssl_err2.c into ssl_err.c. | Joel Sing |
2017-01-26 | english is hard. | Bob Beck |
2017-01-26 | Limit the number of sequential empty records that we will process | Bob Beck |
2017-01-26 | Refactor the code to generate a WANT_READ into a function, as we are | Bob Beck |
2017-01-26 | Remove most of SSL3_ENC_METHOD - we can just inline the function calls | Joel Sing |
2017-01-26 | Move relatively new version range code from ssl_lib.c into a separate | Joel Sing |
2017-01-26 | Rename s3_{both,clnt,pkt_srvr}.c to have an ssl_ prefix since they are no | Joel Sing |
2017-01-26 | Merge the client/server version negotiation into the existing (currently | Joel Sing |
2017-01-26 | Remove ssl3_undef_enc_method - if we have internal bugs we want to segfault | Joel Sing |
2017-01-26 | Remove a sess_cert reference from a comment in the public header. | Joel Sing |
2017-01-25 | Limit enabled version range by the versions configured on the SSL_CTX/SSL, | Joel Sing |
2017-01-25 | Change the SSL_IS_DTLS() macro to check the version, rather than using a | Joel Sing |
2017-01-25 | Provide ssl3_packet_read() and ssl3_packet_extend() functions that improve | Joel Sing |
2017-01-25 | Provide defines for SSL_CTRL_SET_CURVES/SSL_CTRL_SET_CURVES_LIST for things | Joel Sing |
2017-01-24 | BUF_MEM_free(), X509_STORE_free() and X509_VERIFY_PARAM_free() all check | Joel Sing |
2017-01-24 | sk_free() checks for NULL so do not bother doing it from the callers. | Joel Sing |
2017-01-24 | sk_pop_free() checks for NULL so do not bother doing it from the callers. | Joel Sing |
2017-01-24 | Within libssl a SSL_CTX * is referred to as a ctx - fix this for | Joel Sing |
2017-01-24 | #if 0 the ecformats_list and eccurves_list - these are currently unused but | Joel Sing |
2017-01-24 | Remove unused cert variable. | Joel Sing |
2017-01-24 | Bump libssl and libtls minors due to symbol additions. | Joel Sing |
2017-01-24 | Add support for setting the supported EC curves via | Joel Sing |
2017-01-24 | Correct bounds checks used when generating the EC curves extension. | Joel Sing |
2017-01-24 | Fix typo in brainpool curve name within a comment. | Joel Sing |
2017-01-24 | There is no point returning then breaking... | Joel Sing |
2017-01-24 | unifdef OPENSSL_NO_BIO - we do not support this in any form. | Joel Sing |
2017-01-24 | ssl_cert_free() checks for NULL itself. | Joel Sing |
2017-01-24 | Remove a "free up if allocated" comment that exists before code that frees | Joel Sing |
2017-01-24 | sk_SSL_CIPHER_free() checks for NULL so do not bother doing the same from | Joel Sing |
2017-01-24 | ssl_sess_cert_free() checks for NULL, so do not bother doing it at the | Joel Sing |
2017-01-24 | There is no point in zeroing fields that exist within a struct that is | Joel Sing |
2017-01-23 | move default_passwd_cb and default_passwd_cb_userdata back into | Bob Beck |
2017-01-23 | Move options and mode from SSL_CTX and SSL to internal, since these can be | Joel Sing |
2017-01-23 | Split most of SSL_METHOD out into an internal variant, which is opaque. | Joel Sing |
2017-01-23 | Remove ssl_ctrl, ssl_ctx_ctrl, ssl_callback_ctrl and ssl_ctx_callback_ctrl | Joel Sing |
2017-01-23 | send state and rstate from ssl_st into internal. There are accessors | Bob Beck |
2017-01-23 | move back read_hash and enc_read_ctx into ssl_st. wpa_supplicant and | Bob Beck |
2017-01-23 | Move a large part of ssl_st into internal, so we can see what squeals. | Bob Beck |