summaryrefslogtreecommitdiff
path: root/src/lib/libssl (follow)
Commit message (Expand)AuthorAgeFilesLines
* nuke unused test programs; ok jsingderaadt2014-06-222-46/+2
* More KNF.jsing2014-06-221-5/+5
* KNF.jsing2014-06-223-208/+203
* KNF.jsing2014-06-226-961/+1081
* More KNF.jsing2014-06-223-9/+9
* always compare memcmp against 0, for clarity.tedu2014-06-216-14/+14
* Pull the code that builds a DTLS sequence number out into its own functionjsing2014-06-216-46/+58
* Specify the correct strength bits for 3DES cipher suites.jsing2014-06-212-30/+26
* Switch to the ISC licensed versions of these files, which Google has madejsing2014-06-212-101/+26
* Pull out the sequence number selection and handle this up front. Also, thejsing2014-06-212-18/+12
* More KNF and clean up.jsing2014-06-212-26/+18
* More KNF.jsing2014-06-218-61/+56
* KNFmiod2014-06-213-124/+137
* KNFmiod2014-06-213-178/+186
* Fix memory leak in error path.logan2014-06-212-4/+4
* Remove the OPENSSL_*cap getenv's. A program should not be able toderaadt2014-06-203-25/+5
* wrap getenv OPENSSL_ALLOW_PROXY_CERTS in an issetugid check, to protectderaadt2014-06-201-2/+2
* Remove OPENSSL_instrument_halt and OPENSSL_far_spin, which both mightmiod2014-06-201-70/+0
* Fix incorrect bounds check in amd64 assembly version of bn_mul_mont();miod2014-06-202-4/+4
* convert CRYPTO_memcmp to timingsafe_memcmp based on current policy favoringtedu2014-06-1918-44/+44
* check stack push return and make some effort to clean up. ok beck miodtedu2014-06-191-2/+6
* improve error checking. set error code on error, and check malloc return.tedu2014-06-191-2/+13
* In ssl3_send_newsession_ticket(), fix a memory leak in an error path.miod2014-06-182-4/+8
* Missinc calloc() return value check; ok deraadt@miod2014-06-181-1/+5
* Make sure to always invoke EVP_CIPHER_CTX_cleanup() before returning in themiod2014-06-182-8/+20
* Use asprintf() instead of a fixed 128-byte size in SSL_CIPHER_description()miod2014-06-182-22/+22
* In SSL_COMP_add_compression_method(), make sure error cases actually returnmiod2014-06-182-4/+4
* ssl_session_cmp is not a sort function, can use CRYPTO_memcmp here too.tedu2014-06-172-4/+8
* free iv, then cleanse. from Cyril Jouvetedu2014-06-151-2/+2
* Simplify EVP_MD_CTX_create() by just using calloc(). Also, use 0 ratherjsing2014-06-151-9/+4
* Simplify EVP_CIPHER_CTX_new() - stop pretending that EVP_CIPHER_CTX_init()jsing2014-06-151-6/+2
* Add missing OPENSSL_cleanse() in aead_aes_gcm_cleanup().jsing2014-06-151-1/+2
* The OPENSSL_cleanse() in aes_gcm_cleanup() only cleans the gcm field of thejsing2014-06-151-2/+2
* Rename ssl3_record_sequence_update() to ssl3_record_sequence_increment(),jsing2014-06-157-55/+28
* Add more bounded attributes to the buffer and md5/sha headers in libsslavsm2014-06-143-19/+35
* typomiod2014-06-131-2/+2
* Correctly calculate the key block length when using export ciphers.jsing2014-06-132-2/+10
* 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
* Swap compress/expand around so they are in the correct order - these endedjsing2014-06-132-28/+28
* 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
* Add ChaCha20-Poly1305 based ciphersuites.jsing2014-06-1310-14/+162
* Switch the AES-GCM cipher suites to SSL_CIPHER_ALGORITHM2_AEAD.jsing2014-06-132-42/+136
* Combine the MAC handling for both !EVP_CIPH_FLAG_AEAD_CIPHER andjsing2014-06-132-28/+22
* Use SSL3_SEQUENCE_SIZE and if we're going to preincrement we may as welljsing2014-06-131-4/+3
* Add support for handling SSL_CIPHER_ALGORITHM2_AEAD ciphers, which arejsing2014-06-138-66/+498