1. 11 3月, 2021 1 次提交
  2. 23 3月, 2020 1 次提交
  3. 27 2月, 2020 1 次提交
  4. 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
  5. 10 9月, 2019 1 次提交
  6. 17 8月, 2019 1 次提交
  7. 29 5月, 2018 1 次提交
  8. 21 5月, 2018 1 次提交
  9. 18 10月, 2017 1 次提交
  10. 22 8月, 2017 1 次提交
    • P
      This has been added to avoid the situation where some host ctype.h functions · a1df06b3
      Pauli 提交于
      return true for characters > 127.  I.e. they are allowing extended ASCII
      characters through which then cause problems.  E.g. marking superscript '2' as
      a number then causes the common (ch - '0') conversion to number to fail
      miserably.  Likewise letters with diacritical marks can also cause problems.
      
      If a non-ASCII character set is being used (currently only EBCDIC), it is
      adjusted for.
      
      The implementation uses a single table with a bit for each of the defined
      classes.  These functions accept an int argument and fail for
      values out of range or for characters outside of the ASCII set.  They will
      work for both signed and unsigned character inputs.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/4102)
      a1df06b3
  11. 19 8月, 2016 1 次提交
  12. 31 7月, 2016 2 次提交
  13. 25 7月, 2016 1 次提交
  14. 18 5月, 2016 1 次提交
  15. 29 4月, 2016 1 次提交
  16. 22 3月, 2016 1 次提交
  17. 06 2月, 2016 1 次提交
  18. 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
  19. 21 1月, 2016 1 次提交
    • V
      Check Suite-B constraints with EE DANE records · 6e328256
      Viktor Dukhovni 提交于
      When DANE-EE(3) matches or either of DANE-EE/PKIX-EE fails, we don't
      build a chain at all, but rather succeed or fail with just the leaf
      certificate.  In either case also check for Suite-B violations.
      
      As unlikely as it may seem that anyone would enable both DANE and
      Suite-B, we should do what the application asks.
      
      Took the opportunity to eliminate the "cb" variables in x509_vfy.c,
      just call ctx->verify_cb(ok, ctx)
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      6e328256
  20. 20 1月, 2016 1 次提交
  21. 01 1月, 2016 1 次提交
  22. 15 12月, 2015 1 次提交
  23. 08 12月, 2015 2 次提交
  24. 15 10月, 2015 1 次提交
  25. 18 9月, 2015 1 次提交
  26. 17 9月, 2015 2 次提交
  27. 01 9月, 2015 1 次提交
  28. 14 5月, 2015 1 次提交
  29. 28 3月, 2015 1 次提交
    • R
      free NULL cleanup · c5ba2d99
      Rich Salz 提交于
      EVP_.*free; this gets:
              EVP_CIPHER_CTX_free EVP_PKEY_CTX_free EVP_PKEY_asn1_free
              EVP_PKEY_asn1_set_free EVP_PKEY_free EVP_PKEY_free_it
              EVP_PKEY_meth_free; and also EVP_CIPHER_CTX_cleanup
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      c5ba2d99
  30. 25 3月, 2015 1 次提交
  31. 23 3月, 2015 1 次提交
  32. 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
  33. 22 1月, 2015 1 次提交
  34. 27 1月, 2014 1 次提交
  35. 18 8月, 2013 1 次提交
  36. 03 8月, 2012 2 次提交