1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 13 12月, 2019 1 次提交
  6. 13 2月, 2018 1 次提交
  7. 01 2月, 2018 1 次提交
  8. 18 10月, 2017 1 次提交
  9. 17 7月, 2017 1 次提交
    • R
      Standardize apps use of -rand, etc. · 3ee1eac2
      Rich Salz 提交于
      Standardized the -rand flag and added a new one:
          -rand file...
                  Always reads the specified files
          -writerand file
                  Always writes to the file on exit
      
      For apps that use a config file, the RANDFILE config parameter reads
      the file at startup (to seed the RNG) and write to it on exit if
      the -writerand flag isn't used.
      
      Ensured that every app that took -rand also took -writerand, and
      made sure all of that agreed with all the documentation.
      
      Fix error reporting in write_file and -rand
      Reviewed-by: NPaul Dale <paul.dale@oracle.com>
      (Merged from https://github.com/openssl/openssl/pull/3862)
      3ee1eac2
  10. 13 6月, 2017 1 次提交
  11. 22 5月, 2017 1 次提交
  12. 03 5月, 2017 1 次提交
  13. 14 2月, 2017 1 次提交
  14. 15 10月, 2016 1 次提交
  15. 22 9月, 2016 1 次提交
  16. 20 9月, 2016 1 次提交
  17. 18 8月, 2016 1 次提交
  18. 06 8月, 2016 1 次提交
  19. 15 7月, 2016 1 次提交
  20. 29 6月, 2016 1 次提交
  21. 19 6月, 2016 1 次提交
  22. 18 5月, 2016 2 次提交
  23. 17 5月, 2016 1 次提交
  24. 04 5月, 2016 1 次提交
  25. 21 4月, 2016 2 次提交
  26. 18 4月, 2016 1 次提交
  27. 13 4月, 2016 1 次提交
  28. 22 3月, 2016 1 次提交
  29. 19 3月, 2016 1 次提交
  30. 16 3月, 2016 1 次提交
    • F
      General verify options to openssl ts · 08538fc0
      fbroda 提交于
      This commit adds the general verify options of ocsp, verify,
      cms, etc. to the openssl timestamping app as suggested by
      Stephen N. Henson in [openssl.org #4287]. The conflicting
      "-policy" option of "openssl ts" has been renamed to
      "-tspolicy". Documentation and tests have been updated.
      
      CAVE: This will break code, which currently uses the "-policy"
      option.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      08538fc0
  31. 20 2月, 2016 1 次提交
  32. 08 12月, 2015 2 次提交
  33. 20 11月, 2015 1 次提交
  34. 10 11月, 2015 1 次提交
  35. 22 9月, 2015 1 次提交
  36. 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