1. 21 1月, 2016 2 次提交
  2. 20 1月, 2016 2 次提交
  3. 19 1月, 2016 1 次提交
    • V
      Support disabling any or all TLS or DTLS versions · 6b01bed2
      Viktor Dukhovni 提交于
      Some users want to disable SSL 3.0/TLS 1.0/TLS 1.1, and enable just
      TLS 1.2.  In the future they might want to disable TLS 1.2 and
      enable just TLS 1.3, ...
      
      This commit makes it possible to disable any or all of the TLS or
      DTLS protocols.  It also considerably simplifies the SSL/TLS tests,
      by auto-generating the min/max version tests based on the set of
      supported protocols (425 explicitly written out tests got replaced
      by two loops that generate all 425 tests if all protocols are
      enabled, fewer otherwise).
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      6b01bed2
  4. 15 1月, 2016 3 次提交
  5. 14 1月, 2016 1 次提交
    • V
      Fix DES_LONG breakage · bdb1d0c2
      Viktor Dukhovni 提交于
      For some strange reason opensslconf.h was only defining DES_LONG
      when included via des.h, but that's exceedingly fragile (as a
      result of include guards the include via des.h might not actually
      process the content again).
      
      Ripped out the nesting constraint, now always define OSSL_DES_LONG
      if not already defined.  Note, this could just be DES_LONG, but
      trying to avoid exposing DES_LONG in places where it has never been
      seen before, so it is up to des.h to actually define DES_LONG as
      OSSL_DES_LONG.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      bdb1d0c2
  6. 13 1月, 2016 2 次提交
  7. 11 1月, 2016 2 次提交
  8. 10 1月, 2016 2 次提交
  9. 08 1月, 2016 2 次提交
    • V
      Backwards-compatibility subject to OPENSSL_API_COMPAT · 98186eb4
      Viktor Dukhovni 提交于
      Provide backwards-compatiblity for functions, macros and include
      files if OPENSSL_API_COMPAT is either not defined or defined less
      than the version number of the release in which the feature was
      deprecated.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      98186eb4
    • R
      mem functions cleanup · bbd86bf5
      Rich Salz 提交于
      Only two macros CRYPTO_MDEBUG and CRYPTO_MDEBUG_ABORT to control this.
      If CRYPTO_MDEBUG is not set, #ifdef out the whole debug machinery.
              (Thanks to Jakob Bohm for the suggestion!)
      Make the "change wrapper functions" be the only paradigm.
      Wrote documentation!
      Format the 'set func' functions so their paramlists are legible.
      Format some multi-line comments.
      Remove ability to get/set the "memory debug" functions at runtme.
      Remove MemCheck_* and CRYPTO_malloc_debug_init macros.
      Add CRYPTO_mem_debug(int flag) function.
      Add test/memleaktest.
      Rename CRYPTO_malloc_init to OPENSSL_malloc_init; remove needless calls.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      bbd86bf5
  10. 22 12月, 2015 1 次提交
  11. 17 12月, 2015 3 次提交
  12. 15 12月, 2015 1 次提交
  13. 14 12月, 2015 2 次提交
  14. 12 12月, 2015 1 次提交
  15. 10 12月, 2015 1 次提交
  16. 09 12月, 2015 1 次提交
  17. 03 12月, 2015 2 次提交
  18. 02 12月, 2015 1 次提交
  19. 24 11月, 2015 2 次提交
  20. 09 11月, 2015 1 次提交
  21. 22 10月, 2015 2 次提交
  22. 14 10月, 2015 2 次提交
  23. 30 9月, 2015 1 次提交
    • D
      Fix no-stdio build · 984d6c60
      David Woodhouse 提交于
      Much related/similar work also done by
      Ivan Nestlerode <ivan.nestlerode@sonos.com>
      
         +Replace FILE BIO's with dummy ops that fail.
         +Include <stdio.h> for sscanf() even with no-stdio (since the declaration
          is there). We rely on sscanf() to parse the OPENSSL_ia32cap environment
          variable, since it can be larger than a 'long'. And we don't rely on the
          availability of strtoull().
         +Remove OPENSSL_stderr(); not used.
         +Make OPENSSL_showfatal() do nothing (currently without stdio there's
          nothing we can do).
         +Remove file-based functionality from ssl/. The function
          prototypes were already gone, but not the functions themselves.
         +Remove unviable conf functionality via SYS_UEFI
         +Add fallback definition of BUFSIZ.
         +Remove functions taking FILE * from header files.
         +Add missing DECLARE_PEM_write_fp_const
         +Disable X509_LOOKUP_hash_dir(). X509_LOOKUP_file() was already compiled out,
          so remove its prototype.
         +Use OPENSSL_showfatal() in CRYPTO_destroy_dynlockid().
         +Eliminate SRP_VBASE_init() and supporting functions. Users will need to
          build the verifier manually instead.
         +Eliminate compiler warning for unused do_pk8pkey_fp().
         +Disable TEST_ENG_OPENSSL_PKEY.
         +Disable GOST engine as is uses [f]printf all over the place.
         +Eliminate compiler warning for unused send_fp_chars().
      Signed-off-by: NRich Salz <rsalz@akamai.com>
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      984d6c60
  24. 28 9月, 2015 1 次提交
  25. 11 9月, 2015 1 次提交