summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2014-06-12tags as requested by miod and teduTheo de Raadt
2014-06-11Stop setting the EVP_MD_CTX_FLAG_NON_FIPS_ALLOW - it has been ignored sinceJoel Sing
2014-06-11Tsk. Tsk. Someone forgot to compile test the other half.Joel Sing
2014-06-11Disable TLS support...Joel Sing
2014-06-11Provide support for non-funopen systems.Theo de Raadt
2014-06-11More KNF.Joel Sing
2014-06-11Fix memory leak: free s if calloc fails.Loganaden Velvindron
2014-06-11c-file-style hints, begone; ok beckTheo de Raadt
2014-06-10Abandon the auto-ENGINE /dev/crypto interface. VIA 3des cbc receivesTheo de Raadt
2014-06-10KNF.Joel Sing
2014-06-10KNF.Joel Sing
2014-06-10In tls1_cert_verify_mac(), check the return value of EVP_MD_CTX_copy_ex()Joel Sing
2014-06-10Use C99 initialisers for EVP_MD structs, for clarity, grepability and toJoel Sing
2014-06-09use memset instead of bzeroTheo de Raadt
2014-06-09do not include dso.h where it is not needed; ok miodTheo de Raadt
2014-06-08Add an SSL_CIPHER_ALGORITHM2_AEAD flag that is used to mark a cipher asJoel Sing
2014-06-08Add a define for the SSLv3 sequence size and use it, rather than sprinklingJoel Sing
2014-06-08No, we will not be building with OPENSSL_NO_X509_VERIFY. Nuke it andJoel Sing
2014-06-08Clean up BIO_free() handling in bio_ssl.c - BIO_free() has its own NULLJoel Sing
2014-06-08Be explicit with types. No binary change.Joel Sing
2014-06-08Stop using DSO_global_lookup to reach getaddrinfo() and friendsTheo de Raadt
2014-06-08Factor out the part of tls1_change_cipher_state() that is specific toJoel Sing
2014-06-08Factor out the sequence number reset code to aid in upcoming changes.Joel Sing
2014-06-07http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2016265dfbab162ec...Theo de Raadt
2014-06-07Add missing NULL check after calling EVP_PKEY_new_mac_key().Joel Sing
2014-06-07Use !is_read to imply SSL3_CC_WRITE.Joel Sing
2014-06-07Move the export label initialisation into the export handling code, sinceJoel Sing
2014-06-07Remove pointless casts - no binary change.Joel Sing
2014-06-07Rename variables to make it clear that these are only used in the exportJoel Sing
2014-06-07Further clean up of context handling in tls1_change_cipher_state().Joel Sing
2014-06-07Remove various test stubs. The good ones have been moved by jsingTheo de Raadt
2014-06-07evptests.txt lives in regress/lib/libcrypto/evpJoel Sing
2014-06-07malloc() result does not need a cast.Theo de Raadt
2014-06-07Remove another NULL check before a BIO_free().Joel Sing
2014-06-07ssl3_free_digest_list() has its own NULL check.Joel Sing
2014-06-07BIO_free has an implicit NULL check, so do not bother checking for NULLJoel Sing
2014-06-07ssl3_release_{read,write}_buffer() handle being called with NULL buffers,Joel Sing
2014-06-07The DH_free, EC_KEY_free, EVP_PKEY_free and RSA_free functions all haveJoel Sing
2014-06-07More KNF.Joel Sing
2014-06-07More KNF.Joel Sing
2014-06-06s/assember/assembler/ before someone gets offended. At the lastTheo de Raadt
2014-06-05Do not recurse when a 'Hello Request' message is received while gettingJoel Sing
2014-06-05Ensure that sess_cert is not NULL before trying to use it.Joel Sing
2014-06-05Avoid a buffer overflow that can be triggered by sending specially craftedJoel Sing
2014-06-05ssl_sess_cert_new() can return NULL. Fix two cases where the return valueJoel Sing
2014-06-05Ensure that we do not process a ChangeCipherSpec with an empty masterJoel Sing
2014-06-05Be selective as to when ChangeCipherSpec messages will be accepted.Joel Sing
2014-06-05More KNF.Joel Sing
2014-06-04Sanitize use of client_opaque_prf_input: set it to NULL immediately afterMiod Vallat
2014-06-04Fix a leak that can occur when len == 0, and as a result we leak a \0 byte.Loganaden Velvindron