1. 20 Nov, 2015 12 commits
  2. 19 Nov, 2015 1 commit
  3. 18 Nov, 2015 2 commits
  4. 17 Nov, 2015 5 commits
  5. 16 Nov, 2015 4 commits
  6. 15 Nov, 2015 1 commit
  7. 14 Nov, 2015 9 commits
  8. 13 Nov, 2015 3 commits
  9. 11 Nov, 2015 1 commit
  10. 10 Nov, 2015 1 commit
    • Matt Caswell's avatar
      Fix SSL_use_certificate_chain_file · a974e64a
      Matt Caswell authored
      
      
      The new function SSL_use_certificate_chain_file was always crashing in
      the internal function use_certificate_chain_file because it would pass a
      NULL value for SSL_CTX *, but use_certificate_chain_file would
      unconditionally try to dereference it.
      
      Reviewed-by: default avatarStephen Henson <steve@openssl.org>
      a974e64a
  11. 09 Nov, 2015 1 commit
    • Matt Caswell's avatar
      Remove redundant check from tls1_get_curvelist · 6329b609
      Matt Caswell authored
      
      
      The function tls1_get_curvelist() has an explicit check to see if s->cert
      is NULL or not. However the check appears *after* calling the tls1_suiteb
      macro which derefs s->cert. In reality s->cert can never be NULL because
      it is created in SSL_new(). If the malloc fails then the SSL_new call fails
      and no SSL object is created.
      
      Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
      6329b609