1. 28 9月, 2019 2 次提交
    • D
      Reorganize local header files · b5acbf91
      Dr. Matthias St. Pierre 提交于
      Apart from public and internal header files, there is a third type called
      local header files, which are located next to source files in the source
      directory. Currently, they have different suffixes like
      
        '*_lcl.h', '*_local.h', or '*_int.h'
      
      This commit changes the different suffixes to '*_local.h' uniformly.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/9681)
      b5acbf91
    • 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
  2. 12 11月, 2017 1 次提交
  3. 13 10月, 2017 1 次提交
  4. 18 5月, 2016 1 次提交
  5. 02 3月, 2016 1 次提交
  6. 06 2月, 2016 1 次提交
  7. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  8. 14 5月, 2015 1 次提交
  9. 28 1月, 2015 1 次提交
    • R
      OPENSSL_NO_xxx cleanup: SHA · 474e469b
      Rich Salz 提交于
      Remove support for SHA0 and DSS0 (they were broken), and remove
      the ability to attempt to build without SHA (it didn't work).
      For simplicity, remove the option of not building various SHA algorithms;
      you could argue that SHA_224/256/384/512 should be kept, since they're
      like crypto algorithms, but I decided to go the other way.
      So these options are gone:
      	GENUINE_DSA         OPENSSL_NO_SHA0
      	OPENSSL_NO_SHA      OPENSSL_NO_SHA1
      	OPENSSL_NO_SHA224   OPENSSL_NO_SHA256
      	OPENSSL_NO_SHA384   OPENSSL_NO_SHA512
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      474e469b
  10. 22 1月, 2015 1 次提交
  11. 25 9月, 2014 1 次提交
  12. 14 1月, 2013 1 次提交
  13. 18 10月, 2006 2 次提交
  14. 11 10月, 2006 1 次提交
  15. 01 5月, 2006 1 次提交
  16. 16 4月, 2006 1 次提交
  17. 25 10月, 2005 1 次提交
  18. 20 7月, 2005 1 次提交
  19. 24 6月, 2005 1 次提交
  20. 09 12月, 2004 1 次提交
  21. 27 5月, 2004 1 次提交
  22. 15 5月, 2004 1 次提交
  23. 03 1月, 2003 1 次提交
  24. 15 12月, 2002 1 次提交
  25. 14 10月, 2001 1 次提交
  26. 08 3月, 2001 1 次提交
    • D
      · 2dc769a1
      Dr. Stephen Henson 提交于
      Make EVP_Digest*() routines return a value.
      
      TODO: update docs, and make soe other routines
      which use EVP_Digest*() check return codes.
      2dc769a1
  27. 19 3月, 2000 1 次提交
  28. 13 2月, 2000 1 次提交
  29. 03 1月, 2000 1 次提交
  30. 06 9月, 1999 1 次提交
  31. 05 9月, 1999 1 次提交
    • A
      SHA clean-up and (LP64) tune-up. · 7f7c318c
      Andy Polyakov 提交于
      "Clean-up" stands for the fact that it's using common message digest
      template ../md32_common.h and sha[1_]dgst.c are reduced down to
      '#define SHA_[01]' and then '#include "sha_locl.h"'. It stands "(LP64)"
      there because it's 64 bit platforms which benefit most from the tune-up.
      The updated code exhibits 40% performance improvement on IRIX64
      (sounds too good, huh? I probably should double check if it's not
      some cache trashing that was holding it back before), 28% - on
      Alpha Linux and 12% - Solaris 7/64.
      7f7c318c
  32. 23 6月, 1999 1 次提交
  33. 27 5月, 1999 1 次提交
  34. 12 5月, 1999 1 次提交
  35. 10 5月, 1999 1 次提交
  36. 07 5月, 1999 1 次提交
  37. 05 5月, 1999 1 次提交
  38. 21 4月, 1999 1 次提交