1. 04 12月, 2017 2 次提交
  2. 18 10月, 2017 1 次提交
  3. 09 10月, 2017 1 次提交
  4. 03 8月, 2017 1 次提交
  5. 21 6月, 2017 1 次提交
  6. 22 5月, 2017 1 次提交
  7. 08 5月, 2017 1 次提交
  8. 10 3月, 2017 1 次提交
  9. 23 1月, 2017 1 次提交
  10. 04 11月, 2016 5 次提交
  11. 18 8月, 2016 1 次提交
  12. 15 7月, 2016 1 次提交
  13. 14 6月, 2016 1 次提交
  14. 04 6月, 2016 1 次提交
  15. 26 5月, 2016 1 次提交
  16. 18 5月, 2016 1 次提交
  17. 29 4月, 2016 1 次提交
  18. 05 4月, 2016 2 次提交
  19. 08 3月, 2016 1 次提交
    • M
      Lazily initialise the compression buffer · 0220fee4
      Matt Caswell 提交于
      With read pipelining we use multiple SSL3_RECORD structures for reading.
      There are SSL_MAX_PIPELINES (32) of them defined (typically not all of these
      would be used). Each one has a 16k compression buffer allocated! This
      results in a significant amount of memory being consumed which, most of the
      time, is not needed.  This change swaps the allocation of the compression
      buffer to be lazy so that it is only done immediately before it is actually
      used.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      0220fee4
  20. 03 3月, 2016 1 次提交
    • E
      Refactor ClientHello extension parsing · 06217867
      Emilia Kasper 提交于
      1) Simplify code with better PACKET methods.
      
      2) Make broken SNI parsing explicit. SNI was intended to be extensible
      to new name types but RFC 4366 defined the syntax inextensibly, and
      OpenSSL has never parsed SNI in a way that would allow adding a new name
      type. RFC 6066 fixed the definition but due to broken implementations
      being widespread, it appears impossible to ever extend SNI.
      
      3) Annotate resumption behaviour. OpenSSL doesn't currently handle all
      extensions correctly upon resumption. Annotate for further clean-up.
      
      4) Send an alert on ALPN protocol mismatch.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      06217867
  21. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  22. 12 1月, 2016 1 次提交
  23. 08 12月, 2015 3 次提交
  24. 06 12月, 2015 1 次提交
  25. 28 11月, 2015 2 次提交
  26. 26 11月, 2015 1 次提交
  27. 20 11月, 2015 1 次提交
  28. 24 6月, 2015 2 次提交
    • D
      Avoid duplication. · c7238204
      Dr. Stephen Henson 提交于
      We always free the handshake buffer when digests are freed so move
      it into ssl_free_digest_list()
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      c7238204
    • D
      Tidy up ssl3_digest_cached_records logic. · 124037fd
      Dr. Stephen Henson 提交于
      Rewrite ssl3_digest_cached_records handling. Only digest cached records
      if digest array is NULL: this means it is safe to call
      ssl3_digest_cached_records multiple times (subsequent calls are no op).
      
      Remove flag TLS1_FLAGS_KEEP_HANDSHAKE instead only update handshake buffer
      if digest array is NULL.
      
      Add additional "keep" parameter to ssl3_digest_cached_records to indicate
      if the handshake buffer should be retained after digesting cached records
      (needed for TLS 1.2 client authentication).
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      124037fd
  29. 22 6月, 2015 1 次提交
  30. 21 6月, 2015 1 次提交