summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/ssl/s3_enc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge the remnants of s3_enc.c into t1_enc.c.jsing2015-09-111-265/+0
* Nuke ssl3_alert_code().jsing2015-09-111-72/+1
* Nuke ssl3_cert_verify_mac() and ssl3_handshake_mac().jsing2015-09-111-82/+1
* Nuke ssl3_final_finish_mac().jsing2015-09-111-16/+1
* Nuke ssl3_change_cipher_state().jsing2015-09-111-109/+1
* Nuke ssl3_generate_master_secret().jsing2015-09-111-33/+1
* Nuke ssl3_setup_key_block() and ssl3_generate_key_block().jsing2015-09-111-118/+1
* Nuke n_ssl3_mac().jsing2015-09-111-99/+1
* Nuke ssl3_enc().jsing2015-09-111-72/+1
* Correct spelling of OPENSSL_cleanse.jsing2015-09-101-3/+3
* Allow *_free() functions in libssl to handle NULL input.doug2015-07-191-1/+4
* Keep alerts sorted by alert code.jsing2015-06-171-4/+5
* Reluctantly add server-side support for TLS_FALLBACK_SCSV.jsing2015-02-221-1/+3
* Add error handling for EVP_DigestInit_ex().doug2014-12-151-10/+18
* ssl3_init_finished_mac() calls BIO_new() which can fail since it in turnjsing2014-12-101-2/+7
* Sort and group includes.jsing2014-11-161-1/+3
* Typical malloc() with size multiplication to reallocarray().doug2014-10-181-4/+4
* Oops, revert changes commited by mistake. The previous commit was supposedmiod2014-08-071-3/+3
* When you expect a function to return a particular value, don't put a commentmiod2014-08-071-3/+3
* decompress libssl. ok beck jsingtedu2014-07-101-47/+1
* tedu the SSL export cipher handling - since we do not have enabled exportjsing2014-07-091-46/+3
* Missinc calloc() return value check; ok deraadt@miod2014-06-181-1/+5
* Rename ssl3_record_sequence_update() to ssl3_record_sequence_increment(),jsing2014-06-151-3/+4
* Overhaul the keyblock handling in ssl3_change_cipher_state(). Usejsing2014-06-131-32/+45
* Correctly calculate the key block length when used with export ciphers.jsing2014-06-131-17/+24
* Use meaningful variable names, rather than i, j, k and cl.jsing2014-06-131-23/+27
* Do not bother trying to work out of we can reuse a cipher context - justjsing2014-06-131-22/+12
* Separate the comression handling from the cipher/message digest handling injsing2014-06-131-43/+47
* The export_key/export_iv variables are only used in the is_export case.jsing2014-06-131-7/+10
* Rename a bunch of variables in ssl3_change_cipher_state() for readability.jsing2014-06-131-38/+40
* Use SSL3_SEQUENCE_SIZE and if we're going to preincrement we may as welljsing2014-06-131-4/+3
* tags as requested by miod and teduderaadt2014-06-121-1/+1
* Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored sincejsing2014-06-111-3/+0
* Check return value of EVP_MD_CTX_copy_ex() in ssl3_handshake_mac()logan2014-06-101-1/+3
* Remove pointless casts and use c instead of &c[0], since it is the samejsing2014-06-101-9/+3
* More KNF.jsing2014-06-101-19/+18
* Avoid potential NULL pointer function calls in n_ssl3_mac() by checkingjsing2014-06-101-2/+4
* Multiple fixes for ssl3_digest_cached_records() - if EVP_MD_CTX_create()jsing2014-06-101-8/+12
* Ensure ssl3_final_finish_mac() returns failure if either the MD5 or SHA1jsing2014-06-101-5/+10
* More KNF.jsing2014-06-091-11/+11
* Add a define for the SSLv3 sequence size and use it, rather than sprinklingjsing2014-06-081-2/+2
* ssl3_free_digest_list() has its own NULL check.jsing2014-06-071-3/+3
* BIO_free has an implicit NULL check, so do not bother checking for NULLjsing2014-06-071-2/+1
* Add missing NULL checks for calls to ssl_replace_hash(). This functionjsing2014-05-291-2/+6
* EVP_MD_CTX_create() calls malloc and can return NULL. However, only one ofjsing2014-05-281-0/+4
* More KNF.jsing2014-05-271-1/+2
* The ssl_ciper_get_evp() function is currently overloaded to also return thejsing2014-05-251-6/+9
* more malloc/realloc/calloc cleanups; ok beck kettenisderaadt2014-04-211-8/+8
* Chop off more SSLv2 tentacles and start fixing and noting y2038 issues.guenther2014-04-201-2/+0
* Change library to use intrinsic memory allocation functions instead ofbeck2014-04-171-7/+7