1. 09 3月, 2016 1 次提交
  2. 28 1月, 2016 1 次提交
  3. 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
  4. 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
  5. 15 10月, 2015 1 次提交
  6. 23 9月, 2015 1 次提交
  7. 04 9月, 2015 2 次提交
  8. 02 9月, 2015 1 次提交
  9. 14 5月, 2015 1 次提交
  10. 11 5月, 2015 1 次提交
  11. 07 5月, 2015 1 次提交
  12. 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
  13. 03 5月, 2015 1 次提交
  14. 06 2月, 2015 1 次提交
  15. 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
  16. 27 1月, 2015 1 次提交
  17. 22 1月, 2015 1 次提交
  18. 31 12月, 2014 1 次提交
  19. 16 4月, 2014 1 次提交
  20. 15 12月, 2012 1 次提交
  21. 08 12月, 2012 1 次提交
  22. 07 12月, 2012 1 次提交
  23. 26 1月, 2012 1 次提交
  24. 25 2月, 2010 1 次提交
  25. 24 2月, 2010 1 次提交
  26. 06 11月, 2008 1 次提交
  27. 22 10月, 2008 1 次提交
  28. 12 10月, 2008 1 次提交
  29. 01 9月, 2008 1 次提交
  30. 29 8月, 2008 1 次提交
  31. 12 8月, 2008 1 次提交
  32. 08 8月, 2008 1 次提交
  33. 04 8月, 2008 1 次提交
  34. 13 7月, 2008 2 次提交
  35. 19 12月, 2006 1 次提交
  36. 06 12月, 2006 1 次提交
  37. 27 11月, 2006 1 次提交
  38. 15 9月, 2006 1 次提交