1. 04 5月, 2020 1 次提交
  2. 23 4月, 2020 1 次提交
  3. 04 4月, 2020 1 次提交
  4. 12 7月, 2019 1 次提交
  5. 06 12月, 2018 1 次提交
  6. 20 11月, 2018 1 次提交
  7. 14 9月, 2018 1 次提交
    • R
      VMS: turn on name mangling for all our programs · 2935f624
      Richard Levitte 提交于
      With the change to have separate object files by intent, VMS name
      mangling gets done differently.  While we previously had that for
      libraries only, we must now turn that on generally for our programs,
      because some of them depend in internal libraries where mangled names
      are all that there is.
      
      Dynamic modules are still built with non-mangled names, which is good
      enough to show that it's possible to build with our public libraries
      using our public headers.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/7208)
      2935f624
  8. 27 7月, 2017 1 次提交
    • P
      Update the test framework so that the need for test_main is removed. Everything · ad887416
      Pauli 提交于
      that needed test_main now works using the same infrastructure as tests that used
      register_tests.
      
      This meant:
      * renaming register_tests to setup_tests and giving it a success/failure return.
      * renaming the init_test function to setup_test_framework.
      * renaming the finish_test function to pulldown_test_framework.
      * adding a user provided global_init function that runs before the test frame
          work is initialised.  It returns a failure indication that stops the stest.
      * adding helper functions that permit tests to access their command line args.
      * spliting the BIO initialisation and finalisation out from the test setup and
          teardown.
      * hiding some of the now test internal functions.
      * fix the comments in testutil.h
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3953)
      ad887416
  9. 02 5月, 2017 1 次提交
  10. 25 4月, 2017 1 次提交
  11. 19 4月, 2017 2 次提交
  12. 30 1月, 2017 1 次提交
  13. 09 11月, 2016 2 次提交
  14. 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
  15. 20 9月, 2016 1 次提交
  16. 14 9月, 2016 3 次提交
  17. 13 9月, 2016 2 次提交
    • M
      Address WPACKET review comments · de451856
      Matt Caswell 提交于
      A few style tweaks here and there. The main change is that curr and
      packet_len are now offsets into the buffer to account for the fact that
      the pointers can change if the buffer grows. Also dropped support for the
      WPACKET_set_packet_len() function. I thought that was going to be needed
      but so far it hasn't been. It doesn't really work any more due to the
      offsets change.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      de451856
    • M
      Add tests for the WPACKET implementation · d6c4cc29
      Matt Caswell 提交于
      The tests will only work in no-shared builds because WPACKET is an
      internal only API that does not get exported by the shared library.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      d6c4cc29