1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 07 7月, 2017 1 次提交
  7. 05 7月, 2017 1 次提交
  8. 02 8月, 2016 1 次提交
  9. 18 5月, 2016 1 次提交
  10. 30 3月, 2016 1 次提交
  11. 10 3月, 2016 1 次提交
    • B
      Avoid negative array index in BIO_debug_callback() · a1673e15
      Benjamin Kaduk 提交于
      BIO_snprintf() can return -1 on truncation (and overflow as of commit
      9cb17730).  Though neither can
      realistically occur while printing a pointer and short fixed string into
      a buffer of length 256, the analysis to confirm that this the case goes
      somewhat far up the call chain, and not all static analyzers can
      successfully follow the chain of logic.
      
      It's easy enough to clamp the returned length to be nonnegative before
      continuing, which appeases the static analyzer and does not harm the
      subsequent code.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      a1673e15
  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. 14 5月, 2015 1 次提交
  14. 10 3月, 2015 1 次提交
  15. 24 1月, 2015 1 次提交
  16. 22 1月, 2015 1 次提交
  17. 13 1月, 2015 1 次提交
  18. 12 11月, 2008 1 次提交
  19. 02 11月, 2008 1 次提交
  20. 01 11月, 2008 1 次提交
  21. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  22. 20 2月, 2001 2 次提交
    • R
      Use new-style system-id macros everywhere possible. I hope I haven't · bc36ee62
      Richard Levitte 提交于
      missed any.
      
      This compiles and runs on Linux, and external applications have no
      problems with it.  The definite test will be to build this on VMS.
      bc36ee62
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  23. 24 4月, 1999 1 次提交
  24. 20 4月, 1999 1 次提交
  25. 18 4月, 1999 1 次提交
  26. 21 12月, 1998 2 次提交