1. 22 May, 2015 10 commits
  2. 21 May, 2015 4 commits
  3. 20 May, 2015 12 commits
  4. 19 May, 2015 2 commits
  5. 18 May, 2015 4 commits
  6. 17 May, 2015 1 commit
  7. 16 May, 2015 7 commits
    • Matt Caswell's avatar
      Further version negotiation updates · b2ce0337
      Matt Caswell authored
      
      
      More miscellaneous updates to version negotiation following feedback.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      b2ce0337
    • Matt Caswell's avatar
      Move SSLv3_*method() functions · a304d385
      Matt Caswell authored
      
      
      Move these functions into t1_clnt.c, t1_srvr.c and t1_meth.c and take
      advantage of the existing tls1_get*_method() functions that all the other
      methods are using. Since these now have to support SSLv3 anyway we might
      as well use the same set of get functions for both TLS and SSLv3.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      a304d385
    • Matt Caswell's avatar
      Updates following review comments · d45ba43d
      Matt Caswell authored
      
      
      Miscellaneous updates following review comments on the version negotiation
      rewrite patches.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      d45ba43d
    • Matt Caswell's avatar
      Version negotiation rewrite doc updates · a27e81ee
      Matt Caswell authored
      
      
      Update various documentation references to the new TLS_*_method names. Also
      add a CHANGES entry.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      a27e81ee
    • Matt Caswell's avatar
      Version negotiation rewrite cleanup · a3680c8f
      Matt Caswell authored
      
      
      Following the version negotiation rewrite all of the previous code that was
      dedicated to version negotiation can now be deleted - all six source files
      of it!!
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      a3680c8f
    • Matt Caswell's avatar
      Client side version negotiation rewrite · 13c9bb3e
      Matt Caswell authored
      
      
      Continuing from the previous commit this changes the way we do client side
      version negotiation. Similarly all of the s23* "up front" state machine code
      has been avoided and again things now work much the same way as they already
      did for DTLS, i.e. we just do most of the work in the
      ssl3_get_server_hello() function.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      13c9bb3e
    • Matt Caswell's avatar
      Server side version negotiation rewrite · 32ec4153
      Matt Caswell authored
      This commit changes the way that we do server side protocol version
      negotiation. Previously we had a whole set of code that had an "up front"
      state machine dedicated to the negotiating the protocol version. This adds
      significant complexity to the state machine. Historically the justification
      for doing this was the support of SSLv2 which works quite differently to
      SSLv3+. However, we have now removed support for SSLv2 so there is little
      reason to maintain this complexity.
      
      The one slight difficulty is that, although we no longer support SSLv2, we
      do still support an SSLv3+ ClientHello in an SSLv2 backward compatible
      ClientHello format. This is generally only used by legacy clients. This
      commit adds support within the SSLv3 code for these legacy format
      ClientHellos.
      
      Server side version negotiation now works in much the same was as DTLS,
      i.e. we introduce the concept of TLS_ANY_VERSION. If s->version is set to
      that then when a ClientHello is received it will work out ...
      32ec4153