1. 23 3月, 2020 1 次提交
  2. 28 9月, 2019 1 次提交
  3. 03 5月, 2017 1 次提交
  4. 11 10月, 2016 1 次提交
    • D
      Remove trailing whitespace from some files. · 609b0852
      David Benjamin 提交于
      The prevailing style seems to not have trailing whitespace, but a few
      lines do. This is mostly in the perlasm files, but a few C files got
      them after the reformat. This is the result of:
      
        find . -name '*.pl' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.c' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.h' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
      
      Then bn_prime.h was excluded since this is a generated file.
      
      Note mkerr.pl has some changes in a heredoc for some help output, but
      other lines there lack trailing whitespace too.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      609b0852
  5. 16 8月, 2016 1 次提交
  6. 05 8月, 2016 1 次提交
  7. 04 8月, 2016 1 次提交
  8. 29 6月, 2016 1 次提交
  9. 10 6月, 2016 1 次提交
    • M
      Fix seg fault in TS_RESP_verify_response() · e68a780e
      Matt Caswell 提交于
      The TS_RESP_verify_response() function is used for verifying the response
      from a TSA. You can set the provided TS_VERIFY_CTX with different flags
      depending on what aspects of the response you wish to verify.
      
      A seg fault will occur if you supply the TS_VFY_SIGNER or TS_VFY_TSA_NAME
      flags without also specifying TS_VFY_SIGNATURE.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      e68a780e
  10. 18 5月, 2016 1 次提交
  11. 16 4月, 2016 1 次提交
  12. 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
  13. 04 1月, 2016 1 次提交
  14. 08 12月, 2015 2 次提交
  15. 14 11月, 2015 1 次提交
  16. 23 9月, 2015 1 次提交
  17. 22 9月, 2015 1 次提交
  18. 06 9月, 2015 2 次提交
  19. 01 9月, 2015 1 次提交
  20. 04 6月, 2015 1 次提交
  21. 14 5月, 2015 1 次提交
  22. 11 5月, 2015 1 次提交
  23. 03 5月, 2015 1 次提交
  24. 02 5月, 2015 1 次提交
    • R
      free NULL cleanup -- coda · 25aaa98a
      Rich Salz 提交于
      After the finale, the "real" final part. :)  Do a recursive grep with
      "-B1 -w [a-zA-Z0-9_]*_free" to see if any of the preceeding lines are
      an "if NULL" check that can be removed.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      25aaa98a
  25. 22 1月, 2015 2 次提交
  26. 31 12月, 2014 1 次提交
  27. 22 4月, 2014 1 次提交
  28. 24 9月, 2009 1 次提交
  29. 30 12月, 2008 1 次提交
  30. 24 4月, 2007 1 次提交
  31. 07 3月, 2006 1 次提交
  32. 06 3月, 2006 1 次提交
  33. 15 2月, 2006 1 次提交
  34. 13 2月, 2006 1 次提交