| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge the remnants of s3_enc.c into t1_enc.c. |  jsing | 2015-09-11 | 1 | -265/+0 |
* | Nuke ssl3_alert_code(). |  jsing | 2015-09-11 | 1 | -72/+1 |
* | Nuke ssl3_cert_verify_mac() and ssl3_handshake_mac(). |  jsing | 2015-09-11 | 1 | -82/+1 |
* | Nuke ssl3_final_finish_mac(). |  jsing | 2015-09-11 | 1 | -16/+1 |
* | Nuke ssl3_change_cipher_state(). |  jsing | 2015-09-11 | 1 | -109/+1 |
* | Nuke ssl3_generate_master_secret(). |  jsing | 2015-09-11 | 1 | -33/+1 |
* | Nuke ssl3_setup_key_block() and ssl3_generate_key_block(). |  jsing | 2015-09-11 | 1 | -118/+1 |
* | Nuke n_ssl3_mac(). |  jsing | 2015-09-11 | 1 | -99/+1 |
* | Nuke ssl3_enc(). |  jsing | 2015-09-11 | 1 | -72/+1 |
* | Correct spelling of OPENSSL_cleanse. |  jsing | 2015-09-10 | 1 | -3/+3 |
* | Allow *_free() functions in libssl to handle NULL input. |  doug | 2015-07-19 | 1 | -1/+4 |
* | Keep alerts sorted by alert code. |  jsing | 2015-06-17 | 1 | -4/+5 |
* | Reluctantly add server-side support for TLS_FALLBACK_SCSV. |  jsing | 2015-02-22 | 1 | -1/+3 |
* | Add error handling for EVP_DigestInit_ex(). |  doug | 2014-12-15 | 1 | -10/+18 |
* | ssl3_init_finished_mac() calls BIO_new() which can fail since it in turn |  jsing | 2014-12-10 | 1 | -2/+7 |
* | Sort and group includes. |  jsing | 2014-11-16 | 1 | -1/+3 |
* | Typical malloc() with size multiplication to reallocarray(). |  doug | 2014-10-18 | 1 | -4/+4 |
* | Oops, revert changes commited by mistake. The previous commit was supposed |  miod | 2014-08-07 | 1 | -3/+3 |
* | When you expect a function to return a particular value, don't put a comment |  miod | 2014-08-07 | 1 | -3/+3 |
* | decompress libssl. ok beck jsing |  tedu | 2014-07-10 | 1 | -47/+1 |
* | tedu the SSL export cipher handling - since we do not have enabled export |  jsing | 2014-07-09 | 1 | -46/+3 |
* | Missinc calloc() return value check; ok deraadt@ |  miod | 2014-06-18 | 1 | -1/+5 |
* | Rename ssl3_record_sequence_update() to ssl3_record_sequence_increment(), |  jsing | 2014-06-15 | 1 | -3/+4 |
* | Overhaul the keyblock handling in ssl3_change_cipher_state(). Use |  jsing | 2014-06-13 | 1 | -32/+45 |
* | Correctly calculate the key block length when used with export ciphers. |  jsing | 2014-06-13 | 1 | -17/+24 |
* | Use meaningful variable names, rather than i, j, k and cl. |  jsing | 2014-06-13 | 1 | -23/+27 |
* | Do not bother trying to work out of we can reuse a cipher context - just |  jsing | 2014-06-13 | 1 | -22/+12 |
* | Separate the comression handling from the cipher/message digest handling in |  jsing | 2014-06-13 | 1 | -43/+47 |
* | The export_key/export_iv variables are only used in the is_export case. |  jsing | 2014-06-13 | 1 | -7/+10 |
* | Rename a bunch of variables in ssl3_change_cipher_state() for readability. |  jsing | 2014-06-13 | 1 | -38/+40 |
* | Use SSL3_SEQUENCE_SIZE and if we're going to preincrement we may as well |  jsing | 2014-06-13 | 1 | -4/+3 |
* | tags as requested by miod and tedu |  deraadt | 2014-06-12 | 1 | -1/+1 |
* | Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored since |  jsing | 2014-06-11 | 1 | -3/+0 |
* | Check return value of EVP_MD_CTX_copy_ex() in ssl3_handshake_mac() |  logan | 2014-06-10 | 1 | -1/+3 |
* | Remove pointless casts and use c instead of &c[0], since it is the same |  jsing | 2014-06-10 | 1 | -9/+3 |
* | More KNF. |  jsing | 2014-06-10 | 1 | -19/+18 |
* | Avoid potential NULL pointer function calls in n_ssl3_mac() by checking |  jsing | 2014-06-10 | 1 | -2/+4 |
* | Multiple fixes for ssl3_digest_cached_records() - if EVP_MD_CTX_create() |  jsing | 2014-06-10 | 1 | -8/+12 |
* | Ensure ssl3_final_finish_mac() returns failure if either the MD5 or SHA1 |  jsing | 2014-06-10 | 1 | -5/+10 |
* | More KNF. |  jsing | 2014-06-09 | 1 | -11/+11 |
* | Add a define for the SSLv3 sequence size and use it, rather than sprinkling |  jsing | 2014-06-08 | 1 | -2/+2 |
* | ssl3_free_digest_list() has its own NULL check. |  jsing | 2014-06-07 | 1 | -3/+3 |
* | BIO_free has an implicit NULL check, so do not bother checking for NULL |  jsing | 2014-06-07 | 1 | -2/+1 |
* | Add missing NULL checks for calls to ssl_replace_hash(). This function |  jsing | 2014-05-29 | 1 | -2/+6 |
* | EVP_MD_CTX_create() calls malloc and can return NULL. However, only one of |  jsing | 2014-05-28 | 1 | -0/+4 |
* | More KNF. |  jsing | 2014-05-27 | 1 | -1/+2 |
* | The ssl_ciper_get_evp() function is currently overloaded to also return the |  jsing | 2014-05-25 | 1 | -6/+9 |
* | more malloc/realloc/calloc cleanups; ok beck kettenis |  deraadt | 2014-04-21 | 1 | -8/+8 |
* | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. |  guenther | 2014-04-20 | 1 | -2/+0 |
* | Change library to use intrinsic memory allocation functions instead of |  beck | 2014-04-17 | 1 | -7/+7 |