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. 23 8月, 2018 1 次提交
  7. 17 4月, 2018 1 次提交
  8. 03 4月, 2018 1 次提交
  9. 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
  10. 16 6月, 2016 1 次提交
  11. 18 5月, 2016 1 次提交
  12. 13 4月, 2016 4 次提交
  13. 23 3月, 2016 1 次提交
  14. 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
  15. 14 5月, 2015 1 次提交
  16. 11 5月, 2015 1 次提交
  17. 25 3月, 2015 1 次提交
  18. 22 1月, 2015 2 次提交
  19. 06 11月, 2008 1 次提交
  20. 09 4月, 2007 1 次提交
  21. 27 3月, 2004 1 次提交
  22. 06 3月, 2004 1 次提交
  23. 22 2月, 2002 1 次提交
  24. 19 1月, 2002 1 次提交
  25. 05 1月, 2002 1 次提交
    • D
      · bc37d996
      Dr. Stephen Henson 提交于
      Experimental configuration code.
      
      Incomplete, largely untested and subject to change/deletion.
      bc37d996
  26. 27 7月, 2001 1 次提交
    • D
      · 19da1300
      Dr. Stephen Henson 提交于
      First of several reorganisations to
      reduce linker bloat. For example the
      single line:
      
      PEM_read_X509()
      
      results in a binary of around 400K in Linux!
      
      This first step separates some of the PEM functions and
      avoids linking in some PKCS#7 and PKCS#12 code.
      19da1300
  27. 23 2月, 2001 1 次提交
  28. 13 12月, 2000 1 次提交
    • D
      · 2aff7727
      Dr. Stephen Henson 提交于
      Rewrite the extension code to use an ASN1_ITEM structure
      for its ASN1 operations as well as the old style function
      pointers (i2d, d2i, new, free). Change standard extensions
      to support this.
      
      Fix a warning in BN_mul(), bn_mul.c about uninitialised 'j'.
      2aff7727
  29. 18 1月, 2000 1 次提交
  30. 20 10月, 1999 1 次提交
  31. 22 6月, 1999 1 次提交
  32. 10 5月, 1999 1 次提交
  33. 24 4月, 1999 1 次提交
  34. 20 4月, 1999 1 次提交
  35. 06 3月, 1999 1 次提交