1. 21 6月, 2017 1 次提交
  2. 20 6月, 2017 1 次提交
  3. 12 6月, 2017 1 次提交
  4. 07 6月, 2017 1 次提交
  5. 22 5月, 2017 3 次提交
  6. 19 5月, 2017 2 次提交
  7. 10 5月, 2017 1 次提交
    • M
      Copy custom extension flags in a call to SSL_set_SSL_CTX() · 21181889
      Matt Caswell 提交于
      The function SSL_set_SSL_CTX() can be used to swap the SSL_CTX used for
      a connection as part of an SNI callback. One result of this is that the
      s->cert structure is replaced. However this structure contains information
      about any custom extensions that have been loaded. In particular flags are
      set indicating whether a particular extension has been received in the
      ClientHello. By replacing the s->cert structure we lose the custom
      extension flag values, and it appears as if a client has not sent those
      extensions.
      
      SSL_set_SSL_CTX() should copy any flags for custom extensions that appear
      in both the old and the new cert structure.
      
      Fixes #2180
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3425)
      21181889
  8. 02 5月, 2017 1 次提交
  9. 24 4月, 2017 1 次提交
  10. 13 4月, 2017 1 次提交
  11. 04 4月, 2017 3 次提交
  12. 03 4月, 2017 1 次提交
  13. 30 3月, 2017 1 次提交
  14. 29 3月, 2017 1 次提交
  15. 16 3月, 2017 1 次提交
  16. 08 3月, 2017 1 次提交
  17. 05 3月, 2017 1 次提交
  18. 03 3月, 2017 17 次提交
  19. 28 2月, 2017 1 次提交
    • E
      Clean up references to FIPS · b53338cb
      Emilia Kasper 提交于
      This removes the fips configure option. This option is broken as the
      required FIPS code is not available.
      
      FIPS_mode() and FIPS_mode_set() are retained for compatibility, but
      FIPS_mode() always returns 0, and FIPS_mode_set() can only be used to
      turn FIPS mode off.
      Reviewed-by: NStephen Henson <steve@openssl.org>
      b53338cb