1. 13 2月, 2023 1 次提交
  2. 10 8月, 2021 1 次提交
  3. 27 2月, 2020 1 次提交
  4. 01 8月, 2019 1 次提交
  5. 28 5月, 2019 1 次提交
  6. 24 5月, 2019 1 次提交
  7. 20 2月, 2018 1 次提交
  8. 13 2月, 2018 1 次提交
  9. 23 1月, 2018 1 次提交
  10. 08 6月, 2017 1 次提交
    • R
      make error tables const and separate header file · 52df25cf
      Rich Salz 提交于
      Run perltidy on util/mkerr
      Change some mkerr flags, write some doc comments
      Make generated tables "const" when genearting lib-internal ones.
      Add "state" file for mkerr
      Renerate error tables and headers
      Rationalize declaration of ERR_load_XXX_strings
      Fix out-of-tree build
      Add -static; sort flags/vars for options.
      Also tweak code output
      Moved engines/afalg to engines (from master)
      Use -static flag
      Standard engine #include's of errors
      Don't linewrap err string tables unless necessary
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3392)
      52df25cf
  11. 27 4月, 2017 1 次提交
  12. 29 1月, 2017 1 次提交
  13. 23 8月, 2016 1 次提交
  14. 19 8月, 2016 1 次提交
  15. 17 8月, 2016 1 次提交
  16. 25 7月, 2016 4 次提交
  17. 23 7月, 2016 1 次提交
  18. 21 7月, 2016 1 次提交
  19. 12 7月, 2016 1 次提交
  20. 08 7月, 2016 1 次提交
  21. 29 6月, 2016 1 次提交
  22. 27 6月, 2016 1 次提交
  23. 16 6月, 2016 1 次提交
  24. 10 6月, 2016 1 次提交
  25. 05 6月, 2016 3 次提交
  26. 24 5月, 2016 1 次提交
  27. 18 5月, 2016 1 次提交
  28. 18 4月, 2016 2 次提交
  29. 10 3月, 2016 1 次提交
  30. 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
  31. 08 1月, 2016 2 次提交
  32. 11 12月, 2015 1 次提交
  33. 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