1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 01 7月, 2022 1 次提交
  4. 10 8月, 2021 1 次提交
  5. 27 2月, 2020 1 次提交
  6. 12 12月, 2019 1 次提交
  7. 13 2月, 2018 1 次提交
  8. 01 2月, 2018 1 次提交
  9. 08 12月, 2017 1 次提交
  10. 18 10月, 2017 1 次提交
  11. 25 8月, 2017 3 次提交
  12. 17 7月, 2017 2 次提交
  13. 03 7月, 2017 1 次提交
  14. 13 6月, 2017 1 次提交
  15. 31 5月, 2017 1 次提交
  16. 29 3月, 2017 1 次提交
  17. 28 3月, 2017 1 次提交
  18. 03 3月, 2017 1 次提交
  19. 21 1月, 2017 1 次提交
  20. 15 10月, 2016 1 次提交
  21. 15 9月, 2016 2 次提交
  22. 14 9月, 2016 1 次提交
  23. 01 8月, 2016 1 次提交
  24. 20 7月, 2016 2 次提交
  25. 15 7月, 2016 1 次提交
  26. 18 5月, 2016 1 次提交
  27. 27 4月, 2016 1 次提交
  28. 31 3月, 2016 2 次提交
  29. 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
  30. 08 12月, 2015 2 次提交
  31. 13 10月, 2015 1 次提交
    • M
      Centralise loading default apps config file · a0a82324
      Matt Caswell 提交于
      Loading the config file after processing command line options can
      cause problems, e.g. where an engine provides new ciphers/digests
      these are not then recoginised on the command line. Move the
      default config file loading to before the command line option
      processing. Whilst we're doing this we might as well centralise
      this instead of doing it individually for each application. Finally
      if we do it before the OpenSSL_add_ssl_algorithms() call then
      ciphersuites provided by an engine (e.g. GOST) can be available to
      the apps.
      
      RT#4085
      RT#4086
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      a0a82324
  32. 06 9月, 2015 1 次提交
    • R
      Change the way apps open their input and output files · bdd58d98
      Richard Levitte 提交于
      The different apps had the liberty to decide whether they would open their
      input and output files in binary mode or not, which could be confusing if
      two different apps were handling the same type of file in different ways.
      
      The solution is to centralise the decision of low level file organisation,
      and that the apps would use a selection of formats to state the intent of
      the file.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      bdd58d98