1. 25 8月, 2017 1 次提交
  2. 07 7月, 2017 1 次提交
  3. 05 7月, 2017 1 次提交
  4. 21 4月, 2017 1 次提交
  5. 26 7月, 2016 1 次提交
  6. 18 5月, 2016 1 次提交
  7. 17 5月, 2016 1 次提交
  8. 09 3月, 2016 2 次提交
  9. 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
  10. 08 1月, 2016 2 次提交
  11. 10 11月, 2015 1 次提交
  12. 30 9月, 2015 1 次提交
    • D
      Fix no-stdio build · 984d6c60
      David Woodhouse 提交于
      Much related/similar work also done by
      Ivan Nestlerode <ivan.nestlerode@sonos.com>
      
         +Replace FILE BIO's with dummy ops that fail.
         +Include <stdio.h> for sscanf() even with no-stdio (since the declaration
          is there). We rely on sscanf() to parse the OPENSSL_ia32cap environment
          variable, since it can be larger than a 'long'. And we don't rely on the
          availability of strtoull().
         +Remove OPENSSL_stderr(); not used.
         +Make OPENSSL_showfatal() do nothing (currently without stdio there's
          nothing we can do).
         +Remove file-based functionality from ssl/. The function
          prototypes were already gone, but not the functions themselves.
         +Remove unviable conf functionality via SYS_UEFI
         +Add fallback definition of BUFSIZ.
         +Remove functions taking FILE * from header files.
         +Add missing DECLARE_PEM_write_fp_const
         +Disable X509_LOOKUP_hash_dir(). X509_LOOKUP_file() was already compiled out,
          so remove its prototype.
         +Use OPENSSL_showfatal() in CRYPTO_destroy_dynlockid().
         +Eliminate SRP_VBASE_init() and supporting functions. Users will need to
          build the verifier manually instead.
         +Eliminate compiler warning for unused do_pk8pkey_fp().
         +Disable TEST_ENG_OPENSSL_PKEY.
         +Disable GOST engine as is uses [f]printf all over the place.
         +Eliminate compiler warning for unused send_fp_chars().
      Signed-off-by: NRich Salz <rsalz@akamai.com>
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      984d6c60
  13. 17 9月, 2015 2 次提交
  14. 11 9月, 2015 1 次提交
  15. 03 9月, 2015 1 次提交
  16. 29 5月, 2015 1 次提交
  17. 14 5月, 2015 1 次提交
  18. 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
  19. 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
  20. 01 5月, 2015 1 次提交
  21. 29 4月, 2015 1 次提交
  22. 22 1月, 2015 3 次提交
  23. 18 8月, 2014 1 次提交
  24. 24 2月, 2014 1 次提交
  25. 20 2月, 2010 1 次提交
  26. 22 12月, 2008 1 次提交
  27. 07 6月, 2007 1 次提交
  28. 19 2月, 2007 1 次提交
  29. 06 12月, 2006 1 次提交
  30. 26 9月, 2006 1 次提交
  31. 25 9月, 2006 1 次提交
  32. 18 9月, 2006 1 次提交
  33. 19 12月, 2005 1 次提交
  34. 04 11月, 2005 1 次提交
  35. 03 7月, 2005 1 次提交