Age | Commit message (Expand) | Author |
2014-06-28 | Fix 2 memory leaks. | Loganaden Velvindron |
2014-06-22 | KNF, particularly wrapped lines of calls to PEM_read_bio_FOO() and | Philip Guenther |
2014-06-21 | always compare memcmp against 0, for clarity. | Ted Unangst |
2014-06-21 | Pull the code that builds a DTLS sequence number out into its own function | Joel Sing |
2014-06-21 | Specify the correct strength bits for 3DES cipher suites. | Joel Sing |
2014-06-21 | Pull out the sequence number selection and handle this up front. Also, the | Joel Sing |
2014-06-21 | More KNF and clean up. | Joel Sing |
2014-06-21 | Fix memory leak in error path. | Loganaden Velvindron |
2014-06-19 | convert CRYPTO_memcmp to timingsafe_memcmp based on current policy favoring | Ted Unangst |
2014-06-18 | In ssl3_send_newsession_ticket(), fix a memory leak in an error path. | Miod Vallat |
2014-06-18 | Make sure to always invoke EVP_CIPHER_CTX_cleanup() before returning in the | Miod Vallat |
2014-06-18 | Use asprintf() instead of a fixed 128-byte size in SSL_CIPHER_description() | Miod Vallat |
2014-06-18 | In SSL_COMP_add_compression_method(), make sure error cases actually return | Miod Vallat |
2014-06-17 | ssl_session_cmp is not a sort function, can use CRYPTO_memcmp here too. | Ted Unangst |
2014-06-15 | Rename ssl3_record_sequence_update() to ssl3_record_sequence_increment(), | Joel Sing |
2014-06-13 | Correctly calculate the key block length when using export ciphers. | Joel Sing |
2014-06-13 | Swap compress/expand around so they are in the correct order - these ended | Joel Sing |
2014-06-13 | Add ChaCha20-Poly1305 based ciphersuites. | Joel Sing |
2014-06-13 | Switch the AES-GCM cipher suites to SSL_CIPHER_ALGORITHM2_AEAD. | Joel Sing |
2014-06-13 | Combine the MAC handling for both !EVP_CIPH_FLAG_AEAD_CIPHER and | Joel Sing |
2014-06-13 | Add support for handling SSL_CIPHER_ALGORITHM2_AEAD ciphers, which are | Joel Sing |
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-11 | Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored since | Joel Sing |
2014-06-11 | Disable TLS support... | Joel Sing |
2014-06-11 | More KNF. | Joel Sing |
2014-06-11 | Fix memory leak: free s if calloc fails. | Loganaden Velvindron |
2014-06-11 | c-file-style hints, begone; ok beck | Theo de Raadt |
2014-06-10 | In tls1_cert_verify_mac(), check the return value of EVP_MD_CTX_copy_ex() | Joel Sing |
2014-06-08 | Add an SSL_CIPHER_ALGORITHM2_AEAD flag that is used to mark a cipher as | Joel Sing |
2014-06-08 | Add a define for the SSLv3 sequence size and use it, rather than sprinkling | Joel Sing |
2014-06-08 | No, we will not be building with OPENSSL_NO_X509_VERIFY. Nuke it and | Joel Sing |
2014-06-08 | Clean up BIO_free() handling in bio_ssl.c - BIO_free() has its own NULL | Joel Sing |
2014-06-08 | Be explicit with types. No binary change. | Joel Sing |
2014-06-08 | Factor out the part of tls1_change_cipher_state() that is specific to | Joel Sing |
2014-06-08 | Factor out the sequence number reset code to aid in upcoming changes. | Joel Sing |
2014-06-07 | http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2016265dfbab162ec... | Theo de Raadt |
2014-06-07 | Add missing NULL check after calling EVP_PKEY_new_mac_key(). | Joel Sing |
2014-06-07 | Use !is_read to imply SSL3_CC_WRITE. | Joel Sing |
2014-06-07 | Move the export label initialisation into the export handling code, since | Joel Sing |
2014-06-07 | Remove pointless casts - no binary change. | Joel Sing |
2014-06-07 | Rename variables to make it clear that these are only used in the export | Joel Sing |
2014-06-07 | Further clean up of context handling in tls1_change_cipher_state(). | Joel Sing |
2014-06-07 | evptests.txt lives in regress/lib/libcrypto/evp | Joel Sing |
2014-06-07 | malloc() result does not need a cast. | Theo de Raadt |
2014-06-07 | Remove another NULL check before a BIO_free(). | Joel Sing |
2014-06-07 | ssl3_free_digest_list() has its own NULL check. | Joel Sing |
2014-06-07 | BIO_free has an implicit NULL check, so do not bother checking for NULL | Joel Sing |
2014-06-07 | ssl3_release_{read,write}_buffer() handle being called with NULL buffers, | Joel Sing |