1. 20 1月, 2016 2 次提交
  2. 15 1月, 2016 2 次提交
  3. 13 1月, 2016 1 次提交
  4. 11 1月, 2016 2 次提交
  5. 10 1月, 2016 1 次提交
  6. 08 1月, 2016 5 次提交
  7. 06 1月, 2016 1 次提交
  8. 02 1月, 2016 2 次提交
    • V
      Protocol version selection and negotiation rewrite · 4fa52141
      Viktor Dukhovni 提交于
      The protocol selection code is now consolidated in a few consecutive
      short functions in a single file and is table driven.  Protocol-specific
      constraints that influence negotiation are moved into the flags
      field of the method structure.  The same protocol version constraints
      are now applied in all code paths.  It is now much easier to add
      new protocol versions without reworking the protocol selection
      logic.
      
      In the presence of "holes" in the list of enabled client protocols
      we no longer select client protocols below the hole based on a
      subset of the constraints and then fail shortly after when it is
      found that these don't meet the remaining constraints (suiteb, FIPS,
      security level, ...).  Ideally, with the new min/max controls users
      will be less likely to create "holes" in the first place.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      4fa52141
    • K
      7946ab33
  9. 30 12月, 2015 1 次提交
  10. 24 12月, 2015 3 次提交
  11. 23 12月, 2015 1 次提交
  12. 22 12月, 2015 2 次提交
  13. 16 12月, 2015 1 次提交
  14. 13 12月, 2015 1 次提交
  15. 10 12月, 2015 1 次提交
  16. 09 12月, 2015 1 次提交
  17. 06 12月, 2015 1 次提交
  18. 05 12月, 2015 3 次提交
  19. 02 12月, 2015 1 次提交
  20. 28 11月, 2015 1 次提交
  21. 24 11月, 2015 1 次提交
  22. 23 11月, 2015 1 次提交
  23. 21 11月, 2015 4 次提交
    • M
      Rename start_async_job to ssl_start_async_job · 7fecbf6f
      Matt Caswell 提交于
      Make it clear that this function is ssl specific.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      7fecbf6f
    • M
      Clean up libssl async calls · add2f5ca
      Matt Caswell 提交于
      Tidy up the libssl async calls and make sure all IO functions are covered.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      add2f5ca
    • M
      Initial Async notify code changes · f4da39d2
      Matt Caswell 提交于
      Initial API implemented for notifying applications that an ASYNC_JOB
      has completed. Currently only s_server is using this. The Dummy Async
      engine "cheats" in that it notifies that it has completed *before* it
      pauses the job. A normal async engine would not do that.
      
      Only the posix version of this has been implemented so far, so it will
      probably fail to compile on Windows at the moment.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      f4da39d2
    • M
      Make libssl async aware · 07bbc92c
      Matt Caswell 提交于
      The following entry points have been made async aware:
      SSL_accept
      SSL_read
      SSL_write
      
      Also added is a new mode - SSL_MODE_ASYNC. Calling the above functions with
      the async mode enabled will initiate a new async job. If an async pause is
      encountered whilst executing the job (such as for example if using SHA1/RSA
      with the Dummy Async engine), then the above functions return with
      SSL_WANT_ASYNC. Calling the functions again (with exactly the same args
      as per non-blocking IO), will resume the job where it left off.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      07bbc92c
  24. 20 11月, 2015 1 次提交