1. 28 9月, 2019 1 次提交
  2. 26 2月, 2019 1 次提交
  3. 05 2月, 2019 1 次提交
  4. 03 4月, 2018 2 次提交
  5. 15 2月, 2018 1 次提交
    • R
      Harmonize the make variables across all known platforms families · 722c9762
      Richard Levitte 提交于
      The make variables LIB_CFLAGS, DSO_CFLAGS and so on were used in
      addition to CFLAGS and so on.  This works without problem on Unix and
      Windows, where options with different purposes (such as -D and -I) can
      appear anywhere on the command line and get accumulated as they come.
      This is not necessarely so on VMS.  For example, macros must all be
      collected and given through one /DEFINE, and the same goes for
      inclusion directories (/INCLUDE).
      
      So, to harmonize all platforms, we repurpose make variables starting
      with LIB_, DSO_ and BIN_ to be all encompassing variables that
      collects the corresponding values from CFLAGS, CPPFLAGS, DEFINES,
      INCLUDES and so on together with possible config target values
      specific for libraries DSOs and programs, and use them instead of the
      general ones everywhere.
      
      This will, for example, allow VMS to use the exact same generators for
      generated files that go through cpp as all other platforms, something
      that has been impossible to do safely before now.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/5357)
      722c9762
  6. 28 1月, 2018 1 次提交
  7. 19 1月, 2018 1 次提交
  8. 02 1月, 2018 1 次提交
  9. 08 12月, 2017 1 次提交
  10. 12 11月, 2017 1 次提交
  11. 18 10月, 2017 1 次提交
  12. 13 10月, 2017 1 次提交
  13. 09 10月, 2017 1 次提交
  14. 30 8月, 2017 2 次提交
  15. 07 7月, 2017 1 次提交
  16. 05 7月, 2017 1 次提交
  17. 15 6月, 2017 1 次提交
  18. 12 5月, 2017 2 次提交
  19. 02 3月, 2017 1 次提交
  20. 01 3月, 2017 3 次提交
  21. 28 2月, 2017 1 次提交
    • E
      Clean up references to FIPS · b53338cb
      Emilia Kasper 提交于
      This removes the fips configure option. This option is broken as the
      required FIPS code is not available.
      
      FIPS_mode() and FIPS_mode_set() are retained for compatibility, but
      FIPS_mode() always returns 0, and FIPS_mode_set() can only be used to
      turn FIPS mode off.
      Reviewed-by: NStephen Henson <steve@openssl.org>
      b53338cb
  22. 13 2月, 2017 1 次提交
  23. 11 10月, 2016 1 次提交
    • D
      Remove trailing whitespace from some files. · 609b0852
      David Benjamin 提交于
      The prevailing style seems to not have trailing whitespace, but a few
      lines do. This is mostly in the perlasm files, but a few C files got
      them after the reformat. This is the result of:
      
        find . -name '*.pl' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.c' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.h' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
      
      Then bn_prime.h was excluded since this is a generated file.
      
      Note mkerr.pl has some changes in a heredoc for some help output, but
      other lines there lack trailing whitespace too.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      609b0852
  24. 01 7月, 2016 1 次提交
    • A
      SPARC assembly pack: enforce V8+ ABI constraints. · f198cc43
      Andy Polyakov 提交于
      Even though it's hard to imagine, it turned out that upper half of
      arguments passed to V8+ subroutine can be non-zero.
      
      ["n" pseudo-instructions, such as srln being srl in 32-bit case and
      srlx in 64-bit one, were implemented in binutils 2.10. It's assumed
      that Solaris assembler implemented it around same time, i.e. 2000.]
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      f198cc43
  25. 07 6月, 2016 1 次提交
  26. 01 6月, 2016 3 次提交
  27. 21 5月, 2016 1 次提交
  28. 18 5月, 2016 3 次提交
  29. 11 5月, 2016 1 次提交
  30. 20 4月, 2016 2 次提交