1. 26 5月, 2023 1 次提交
  2. 27 4月, 2023 1 次提交
  3. 12 4月, 2023 2 次提交
  4. 10 8月, 2021 1 次提交
  5. 27 2月, 2020 1 次提交
  6. 28 9月, 2019 1 次提交
    • D
      Reorganize private crypto header files · 0c994d54
      Dr. Matthias St. Pierre 提交于
      Currently, there are two different directories which contain internal
      header files of libcrypto which are meant to be shared internally:
      
      While header files in 'include/internal' are intended to be shared
      between libcrypto and libssl, the files in 'crypto/include/internal'
      are intended to be shared inside libcrypto only.
      
      To make things complicated, the include search path is set up in such
      a way that the directive #include "internal/file.h" could refer to
      a file in either of these two directoroes. This makes it necessary
      in some cases to add a '_int.h' suffix to some files to resolve this
      ambiguity:
      
        #include "internal/file.h"      # located in 'include/internal'
        #include "internal/file_int.h"  # located in 'crypto/include/internal'
      
      This commit moves the private crypto headers from
      
        'crypto/include/internal'  to  'include/crypto'
      
      As a result, the include directives become unambiguous
      
        #include "internal/file.h"       # located in 'include/internal'
        #include "crypto/file.h"         # located in 'include/crypto'
      
      hence the superfluous '_int.h' suffixes can be stripped.
      
      The files 'store_int.h' and 'store.h' need to be treated specially;
      they are joined into a single file.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/9681)
      0c994d54
  7. 26 2月, 2019 1 次提交
  8. 05 2月, 2019 1 次提交
  9. 21 1月, 2019 1 次提交
  10. 12 9月, 2018 1 次提交
  11. 25 7月, 2018 3 次提交
  12. 04 4月, 2018 1 次提交
  13. 07 2月, 2018 1 次提交
  14. 19 1月, 2018 1 次提交
  15. 18 1月, 2018 1 次提交
  16. 09 11月, 2017 1 次提交
  17. 01 9月, 2017 1 次提交
  18. 30 8月, 2017 2 次提交
  19. 20 6月, 2017 1 次提交
  20. 19 3月, 2017 2 次提交
  21. 01 3月, 2017 1 次提交
  22. 21 2月, 2017 1 次提交
  23. 19 2月, 2017 1 次提交
  24. 23 6月, 2016 1 次提交
  25. 20 5月, 2016 1 次提交
  26. 18 5月, 2016 1 次提交
  27. 02 5月, 2016 1 次提交
  28. 30 3月, 2016 1 次提交
  29. 09 3月, 2016 1 次提交
  30. 14 2月, 2016 1 次提交
    • R
      Declare DllMain internally · dda71111
      Richard Levitte 提交于
      DllMain is a symbol that needs to be global, but no one needs to know.
      However, some compilers will warn if there isn't a declaration before
      the function is defined.  Just add a declaration before the function
      definition.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      dda71111
  31. 10 2月, 2016 1 次提交
  32. 09 2月, 2016 2 次提交
  33. 01 2月, 2016 1 次提交
  34. 31 1月, 2016 1 次提交