1. 15 12月, 2016 1 次提交
  2. 08 11月, 2016 1 次提交
  3. 06 8月, 2016 1 次提交
  4. 18 5月, 2016 1 次提交
  5. 09 3月, 2016 1 次提交
  6. 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
  7. 10 11月, 2015 1 次提交
  8. 15 10月, 2015 1 次提交
  9. 22 9月, 2015 2 次提交
  10. 18 9月, 2015 1 次提交
  11. 17 9月, 2015 1 次提交
  12. 03 9月, 2015 1 次提交
  13. 14 5月, 2015 1 次提交
  14. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  15. 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
  16. 24 3月, 2015 1 次提交
  17. 09 2月, 2015 1 次提交
  18. 06 2月, 2015 1 次提交
  19. 28 1月, 2015 1 次提交
    • 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
  20. 22 1月, 2015 2 次提交
  21. 28 6月, 2014 1 次提交
  22. 05 12月, 2012 1 次提交
  23. 14 12月, 2010 1 次提交
  24. 01 9月, 2008 1 次提交
  25. 29 8月, 2008 1 次提交
  26. 21 8月, 2008 1 次提交
  27. 04 8月, 2008 1 次提交
  28. 07 9月, 2007 1 次提交
  29. 03 10月, 2006 1 次提交
  30. 21 9月, 2006 2 次提交
  31. 10 9月, 2006 1 次提交
  32. 24 7月, 2006 1 次提交
  33. 02 10月, 2005 1 次提交
  34. 01 10月, 2005 1 次提交
  35. 02 9月, 2005 1 次提交
  36. 09 12月, 2004 1 次提交
  37. 05 10月, 2004 1 次提交