1. 26 3月, 2015 14 次提交
  2. 23 3月, 2015 2 次提交
  3. 15 3月, 2015 1 次提交
  4. 11 3月, 2015 1 次提交
  5. 11 2月, 2015 1 次提交
  6. 03 2月, 2015 3 次提交
  7. 01 2月, 2015 1 次提交
  8. 28 1月, 2015 2 次提交
    • R
      OPENSSL_NO_XXX cleanup: OPENSSL_NO_BUF_FREELISTS · 63c574f6
      Rich Salz 提交于
      Remove OPENSSL_NO_BUF_FREELISTS. This was turned on by default,
      so the work here is removing the 'maintain our own freelist' code.
      Also removed a minor old Windows-multibyte/widechar conversion flag.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      63c574f6
    • R
      OPENSSL_NO_xxx cleanup: SHA · 474e469b
      Rich Salz 提交于
      Remove support for SHA0 and DSS0 (they were broken), and remove
      the ability to attempt to build without SHA (it didn't work).
      For simplicity, remove the option of not building various SHA algorithms;
      you could argue that SHA_224/256/384/512 should be kept, since they're
      like crypto algorithms, but I decided to go the other way.
      So these options are gone:
      	GENUINE_DSA         OPENSSL_NO_SHA0
      	OPENSSL_NO_SHA      OPENSSL_NO_SHA1
      	OPENSSL_NO_SHA224   OPENSSL_NO_SHA256
      	OPENSSL_NO_SHA384   OPENSSL_NO_SHA512
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      474e469b
  9. 22 1月, 2015 5 次提交
  10. 03 1月, 2015 1 次提交
  11. 31 12月, 2014 1 次提交
  12. 16 12月, 2014 2 次提交
  13. 04 12月, 2014 1 次提交
  14. 03 12月, 2014 1 次提交
  15. 28 11月, 2014 2 次提交
  16. 26 11月, 2014 1 次提交
  17. 20 11月, 2014 1 次提交
    • E
      Remove ssl3_check_finished. · 980bc1ec
      Emilia Kasper 提交于
      The client sends a session ID with the session ticket, and uses
      the returned ID to detect resumption, so we do not need to peek
      at handshake messages: s->hit tells us explicitly if we're resuming.
      
      An equivalent change was independently made in BoringSSL, see commit
      407886f589cf2dbaed82db0a44173036c3bc3317.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      980bc1ec