Age | Commit message (Expand) | Author |
2014-10-18 | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). | Joel Sing |
2014-10-15 | Disable SSLv3 by default. | Joel Sing |
2014-10-03 | Add support for automatic ephemeral EC keys. | Joel Sing |
2014-09-07 | Remove SSL_kDHr, SSL_kDHd and SSL_aDH. No supported ciphersuites use them, | Joel Sing |
2014-08-24 | Replace the remaining uses of ssl3_put_cipher_by_char() with s2n and a | Joel Sing |
2014-08-23 | Replace the remaining ssl3_get_cipher_by_char() calls with n2s() and | Joel Sing |
2014-08-11 | Check the return value of sk_SSL_CIPHER_new_null(), since it allocates | Joel Sing |
2014-08-11 | Currently, ssl3_put_char_by_bytes(NULL, NULL) is just a long handed way | Joel Sing |
2014-08-10 | Since we no longer need to support SSLv2-style cipher lists, start | Joel Sing |
2014-07-12 | The correct name for EDH is DHE, likewise EECDH should be ECDHE. | Joel Sing |
2014-07-12 | Provide ssl_version_string() function, which uses one of those modern C | Joel Sing |
2014-07-12 | if (x) FOO_free(x) -> FOO_free(x). | Miod Vallat |
2014-07-12 | Remove remnants from PSK, KRB5 and SRP. | Joel Sing |
2014-07-11 | Remove the PSK code. We don't need to drag around this | Bob Beck |
2014-07-10 | Remove more compression tendrils. | Joel Sing |
2014-07-10 | decompress libssl. ok beck jsing | Ted Unangst |
2014-07-10 | remove unused ecc_pkey_size. | Brent Cook |
2014-07-09 | tedu the SSL export cipher handling - since we do not have enabled export | Joel Sing |
2014-06-19 | convert CRYPTO_memcmp to timingsafe_memcmp based on current policy favoring | Ted Unangst |
2014-06-17 | ssl_session_cmp is not a sort function, can use CRYPTO_memcmp here too. | Ted Unangst |
2014-06-13 | Add an SSL_AEAD_CTX to enable the use of EVP_AEAD with an SSL cipher. | Joel Sing |
2014-06-13 | Remove support for the `opaque PRF input' extension, which draft has expired | Miod Vallat |
2014-06-12 | tags as requested by miod and tedu | Theo de Raadt |
2014-06-07 | More KNF. | Joel Sing |
2014-05-31 | Some KNF and fix the vairable spelling. | Joel Sing |
2014-05-31 | More manual OPENSSL_NO_EC and OPENSSL_NO_TLSEXT cleanup. | Joel Sing |
2014-05-31 | unifdef -UDOXYGEN and manually remove the few doxygen comments that are not | Joel Sing |
2014-05-31 | ECDH and ECDSA will not work overly well if there is no EC, so unifdef | 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-30 | Make use of SSL_IS_DTLS, SSL_USE_EXPLICIT_IV, SSL_USE_SIGALGS and | Joel Sing |
2014-05-29 | Any sane platform has stdio. Stop pretending we will ever use a platform | Bob Beck |
2014-05-29 | no space before label | Ted Unangst |
2014-05-29 | consistent braces | Ted Unangst |
2014-05-29 | unidef DH, ECDH, and ECDSA. there's no purpose to a libssl without them. | Ted Unangst |
2014-05-29 | Make it substantially easier to identify protocol version requirements | Joel Sing |
2014-05-29 | When you have functions that perform specific functions, use them. | Joel Sing |
2014-05-28 | EVP_MD_CTX_create() calls malloc and can return NULL. However, only one of | Joel Sing |
2014-05-28 | There is no point in checking if a pointer is non-NULL before calling free, | Joel Sing |
2014-05-25 | remove unused shit. from Alexander Schrijver | Ted Unangst |
2014-05-25 | Remove TLS_DEBUG, SSL_DEBUG, CIPHER_DEBUG and OPENSSL_RI_DEBUG. Much of | Joel Sing |
2014-05-24 | I'm so sorry to learn that the Diab compiler can't (or used not to) parse C | Miod Vallat |
2014-05-24 | Use C99 initialisers for SSL3_ENC_METHOD structs. | Joel Sing |
2014-05-22 | Stop including kssl_lcl.h and nuke it from orbit - it is a no-op now. | Joel Sing |
2014-05-05 | Remove SRP and Kerberos support from libssl. These are complex protocols | Ted Unangst |
2014-05-02 | Nuke OPENSSL_NO_SOCK since any half sane operating system has sockets. | Joel Sing |
2014-04-24 | More KNF, things that couldn't be verified with md5(1), and some whitespace | Ryan Thomas McBride |
2014-04-24 | KNF | Ryan Thomas McBride |
2014-04-21 | more malloc/realloc/calloc cleanups; ok beck kettenis | Theo de Raadt |
2014-04-20 | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | Philip Guenther |