1. 30 10月, 2015 5 次提交
    • M
      Implement Client TLS state machine · 8723588e
      Matt Caswell 提交于
      This swaps the implementation of the client TLS state machine to use the
      new state machine code instead.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      8723588e
    • M
      Split client message reading and writing functions · b9908bf9
      Matt Caswell 提交于
      The new state machine code will split up the reading and writing of
      hanshake messages into discrete phases. In order to facilitate that the
      existing "get" type functions will be split into two halves: one to get
      the message and one to process it. The "send" type functions will also have
      all work relating to constructing the message split out into a separate
      function just for that. For some functions there will also be separate
      pre and post "work" phases to prepare or update state.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b9908bf9
    • M
      Add initial state machine rewrite code · f8e0a557
      Matt Caswell 提交于
      This is the first drop of the new state machine code.
      
      The rewrite has the following objectives:
      - Remove duplication of state code between client and server
      - Remove duplication of state code between TLS and DTLS
      - Simplify transitions and bring the logic together in a single location
        so that it is easier to validate
      - Remove duplication of code between each of the message handling functions
      - Receive a message first and then work out whether that is a valid
        transition - not the other way around (the other way causes lots of issues
        where we are expecting one type of message next but actually get something
        else)
      - Separate message flow state from handshake state (in order to better
        understand each)
        - message flow state = when to flush buffers; handling restarts in the
          event of NBIO events; handling the common flow of steps for reading a
          message and the common flow of steps for writing a message etc
        - handshake state = what handshake message are we working on now
      - Control complexity: only the state machine can change state: keep all
        the state changes local to a file
      
      This builds on previous state machine related work:
      - Surface CCS processing in the state machine
      - Version negotiation rewrite
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      f8e0a557
    • M
      Split ssl3_get_message · 9ab930b2
      Matt Caswell 提交于
      The function ssl3_get_message gets a whole message from the underlying bio
      and returns it to the state machine code. The new state machine code will
      split this into two discrete steps: get the message header and get the
      message body. This commit splits the existing function into these two
      sub steps to facilitate the state machine implementation.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      9ab930b2
    • P
      BN_GF2m_mod_inv(): check bn_wexpand return value · 94b3664a
      Pascal Cuoq 提交于
      Signed-off-by: NKurt Roeckx <kurt@roeckx.be>
      Reviewed-by: NRich Salz <rsalz@akamai.com>
      
      MR #1276, RT #4107
      94b3664a
  2. 29 10月, 2015 1 次提交
    • R
      Remove SSLeay history, etc., from docs · a528d4f0
      Rich Salz 提交于
      If something was "present in all versions" of SSLeay, or if it was
      added to a version of SSLeay (and therefore predates OpenSSL),
      remove mention of it.  Documentation history now starts with OpenSSL.
      
      Remove mention of all history before OpenSSL 0.9.8, inclusive.
      
      Remove all AUTHOR sections.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      a528d4f0
  3. 28 10月, 2015 1 次提交
  4. 27 10月, 2015 1 次提交
  5. 26 10月, 2015 1 次提交
  6. 25 10月, 2015 1 次提交
  7. 24 10月, 2015 10 次提交
  8. 23 10月, 2015 2 次提交
  9. 22 10月, 2015 5 次提交
  10. 21 10月, 2015 2 次提交
  11. 19 10月, 2015 4 次提交
  12. 18 10月, 2015 3 次提交
  13. 17 10月, 2015 1 次提交
  14. 16 10月, 2015 3 次提交