1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 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
  6. 18 5月, 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. 12 1月, 2016 1 次提交
  9. 14 5月, 2015 1 次提交
  10. 22 1月, 2015 1 次提交
  11. 21 3月, 2003 1 次提交
  12. 16 2月, 2002 1 次提交
    • R
      The AES modes OFB and CFB are defined with 128 feedback bits. This · a6cd8707
      Richard Levitte 提交于
      deviates from the "standard" 64 bits of feedback that all other
      algorithms are using.  Therefore, let's redo certain EVP macros to
      accept different amounts of feedback bits for these modes.
      
      Also, change e_aes.c to provide all usually available modes for AES.
      CTR isn't included yet.
      a6cd8707
  13. 31 7月, 2001 1 次提交
  14. 25 5月, 2001 1 次提交
    • D
      · 76c919c1
      Dr. Stephen Henson 提交于
      Add missing variable length cipher flag for Blowfish.
      
      Only use trust settings if either trust or reject settings
      are present, otherwise use compatibility mode. This stops
      root CAs being rejected if they have alias of keyid set.
      76c919c1
  15. 20 2月, 2001 1 次提交
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  16. 03 6月, 2000 1 次提交
  17. 30 5月, 2000 1 次提交
    • D
      Fourth phase EVP revision. · 57ae2e24
      Dr. Stephen Henson 提交于
      Declare ciphers in terms of macros. This reduces
      the amount of code and places each block cipher EVP
      definition in a single file instead of being spread
      over 4 files.
      57ae2e24
  18. 24 4月, 1999 1 次提交
  19. 20 4月, 1999 1 次提交
  20. 22 12月, 1998 1 次提交
  21. 21 12月, 1998 2 次提交