1. 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
  2. 20 1月, 2016 1 次提交
  3. 12 1月, 2016 1 次提交
  4. 08 1月, 2016 1 次提交
  5. 02 1月, 2016 1 次提交
    • 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
  6. 01 1月, 2016 1 次提交
  7. 30 12月, 2015 1 次提交
    • D
      Check for missing DSA parameters. · 72245f34
      Dr. Stephen Henson 提交于
      If DSA parameters are absent return -1 (for unknown) in DSA_security_bits.
      
      If parameters are absent when a certificate is set in an SSL/SSL_CTX
      structure this will reject the certificate by default. This will cause DSA
      certificates which omit parameters to be rejected but that is never (?)
      done in practice.
      
      Thanks to Brian 'geeknik' Carpenter for reporting this issue.
      Reviewed-by: NEmilia Käsper <emilia@openssl.org>
      72245f34
  8. 28 12月, 2015 3 次提交
  9. 20 12月, 2015 1 次提交
  10. 17 12月, 2015 1 次提交
    • R
      Rename some BUF_xxx to OPENSSL_xxx · 7644a9ae
      Rich Salz 提交于
      Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      Add #define's for the old names.
      Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      7644a9ae
  11. 10 12月, 2015 1 次提交
  12. 09 12月, 2015 1 次提交
  13. 08 12月, 2015 2 次提交
  14. 05 12月, 2015 3 次提交
  15. 30 11月, 2015 3 次提交
  16. 26 11月, 2015 1 次提交
  17. 25 11月, 2015 2 次提交
  18. 24 11月, 2015 1 次提交
  19. 20 11月, 2015 1 次提交
  20. 14 11月, 2015 1 次提交
  21. 10 11月, 2015 2 次提交
  22. 08 11月, 2015 1 次提交
  23. 02 11月, 2015 1 次提交
  24. 30 10月, 2015 1 次提交
  25. 24 10月, 2015 1 次提交
  26. 07 10月, 2015 1 次提交
  27. 06 10月, 2015 2 次提交
  28. 18 9月, 2015 1 次提交
  29. 07 9月, 2015 1 次提交
  30. 15 8月, 2015 1 次提交