| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove more compression related code. |  jsing | 2014-07-10 | 3 | -20/+3 |
* | Put back some parts of the public SSL API that should not have been |  jsing | 2014-07-10 | 3 | -4/+28 |
* | decompress libssl. ok beck jsing |  tedu | 2014-07-10 | 25 | -758/+39 |
* | KNF comments, reflowing and moving out of the middle of argument lists in |  guenther | 2014-07-10 | 3 | -93/+150 |
* | remove unused ecc_pkey_size. |  bcook | 2014-07-10 | 1 | -4/+2 |
* | Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to be |  miod | 2014-07-09 | 1 | -2/+2 |
* | Clean up and simplify SSL_CIPHER_description by always using asprintf. If |  jsing | 2014-07-09 | 1 | -54/+54 |
* | tedu the SSL export cipher handling - since we do not have enabled export |  jsing | 2014-07-09 | 11 | -385/+48 |
* | remove unused, private version strings except SSL_version_str |  bcook | 2014-07-09 | 3 | -8/+3 |
* | Mark the weakened 40-bit export ciphers as invalid - no one in their right |  jsing | 2014-07-08 | 1 | -9/+9 |
* | Remove SSL_FIPS. |  jsing | 2014-07-08 | 3 | -94/+86 |
* | Nuke SSL_NOT_EXP since it does nothing. |  jsing | 2014-07-08 | 2 | -126/+125 |
* | pedantic avoidance of division by zero, likely not actually |  beck | 2014-07-08 | 1 | -1/+6 |
* | Memory leak in error path of the day, from clang via dhill@bitrig; |  miod | 2014-07-02 | 1 | -2/+3 |
* | fix the identical leak in three different files. |  tedu | 2014-06-30 | 3 | -6/+9 |
* | More KNF. |  jsing | 2014-06-29 | 1 | -32/+49 |
* | Fix 2 memory leaks. |  logan | 2014-06-28 | 1 | -1/+3 |
* | KNF, particularly wrapped lines of calls to PEM_read_bio_FOO() and |  guenther | 2014-06-22 | 1 | -24/+44 |
* | always compare memcmp against 0, for clarity. |  tedu | 2014-06-21 | 3 | -7/+7 |
* | Pull the code that builds a DTLS sequence number out into its own function |  jsing | 2014-06-21 | 3 | -23/+29 |
* | Specify the correct strength bits for 3DES cipher suites. |  jsing | 2014-06-21 | 1 | -15/+13 |
* | Pull out the sequence number selection and handle this up front. Also, the |  jsing | 2014-06-21 | 1 | -9/+6 |
* | More KNF and clean up. |  jsing | 2014-06-21 | 1 | -13/+9 |
* | Fix memory leak in error path. |  logan | 2014-06-21 | 1 | -2/+2 |
* | convert CRYPTO_memcmp to timingsafe_memcmp based on current policy favoring |  tedu | 2014-06-19 | 9 | -22/+22 |
* | In ssl3_send_newsession_ticket(), fix a memory leak in an error path. |  miod | 2014-06-18 | 1 | -2/+4 |
* | Missinc calloc() return value check; ok deraadt@ |  miod | 2014-06-18 | 1 | -1/+5 |
* | Make sure to always invoke EVP_CIPHER_CTX_cleanup() before returning in the |  miod | 2014-06-18 | 1 | -4/+10 |
* | Use asprintf() instead of a fixed 128-byte size in SSL_CIPHER_description() |  miod | 2014-06-18 | 1 | -11/+11 |
* | In SSL_COMP_add_compression_method(), make sure error cases actually return |  miod | 2014-06-18 | 1 | -2/+2 |
* | ssl_session_cmp is not a sort function, can use CRYPTO_memcmp here too. |  tedu | 2014-06-17 | 1 | -2/+4 |
* | Rename ssl3_record_sequence_update() to ssl3_record_sequence_increment(), |  jsing | 2014-06-15 | 4 | -29/+16 |
* | Correctly calculate the key block length when using export ciphers. |  jsing | 2014-06-13 | 1 | -1/+5 |
* | 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 |
* | Swap compress/expand around so they are in the correct order - these ended |  jsing | 2014-06-13 | 1 | -14/+14 |
* | 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 |
* | Add ChaCha20-Poly1305 based ciphersuites. |  jsing | 2014-06-13 | 5 | -7/+81 |
* | Switch the AES-GCM cipher suites to SSL_CIPHER_ALGORITHM2_AEAD. |  jsing | 2014-06-13 | 1 | -21/+68 |
* | Combine the MAC handling for both !EVP_CIPH_FLAG_AEAD_CIPHER and |  jsing | 2014-06-13 | 1 | -14/+11 |
* | Use SSL3_SEQUENCE_SIZE and if we're going to preincrement we may as well |  jsing | 2014-06-13 | 1 | -4/+3 |
* | Add support for handling SSL_CIPHER_ALGORITHM2_AEAD ciphers, which are |  jsing | 2014-06-13 | 4 | -33/+249 |
* | Add an SSL_AEAD_CTX to enable the use of EVP_AEAD with an SSL cipher. |  jsing | 2014-06-13 | 4 | -4/+49 |
* | Remove support for the `opaque PRF input' extension, which draft has expired |  miod | 2014-06-13 | 9 | -323/+11 |
* | tags as requested by miod and tedu |  deraadt | 2014-06-12 | 49 | -48/+50 |
* | Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored since |  jsing | 2014-06-11 | 4 | -9/+0 |