1. 13 5月, 2011 1 次提交
  2. 05 4月, 2011 1 次提交
  3. 25 3月, 2011 1 次提交
  4. 20 3月, 2011 1 次提交
  5. 19 3月, 2011 1 次提交
  6. 05 10月, 2009 1 次提交
  7. 30 3月, 2009 1 次提交
  8. 16 9月, 2008 1 次提交
  9. 05 7月, 2008 1 次提交
  10. 01 6月, 2008 1 次提交
  11. 26 5月, 2008 1 次提交
  12. 09 7月, 2006 1 次提交
  13. 09 6月, 2006 1 次提交
  14. 05 4月, 2006 2 次提交
  15. 06 4月, 2005 1 次提交
  16. 14 8月, 2003 1 次提交
  17. 31 1月, 2003 1 次提交
  18. 04 12月, 2002 1 次提交
  19. 18 11月, 2002 1 次提交
  20. 13 11月, 2002 1 次提交
  21. 09 10月, 2002 1 次提交
  22. 10 7月, 2002 1 次提交
    • L
      Reorder inclusion of header files: · 7b63c0fa
      Lutz Jänicke 提交于
      des_old.h redefines crypt:
      #define crypt(b,s)\
              DES_crypt((b),(s))
      
      This scheme leads to failure, if header files with the OS's true definition
      of crypt() are processed _after_ des_old.h was processed. This is e.g. the
      case on HP-UX with unistd.h.
      As evp.h now again includes des.h (which includes des_old.h), this problem
      only came up after this modification.
      Solution: move header files (indirectly) including e_os.h before the header
      files (indirectly) including evp.h.
      Submitted by:
      Reviewed by:
      PR:
      7b63c0fa
  23. 07 4月, 2002 1 次提交
  24. 21 10月, 2001 2 次提交
    • D
      · 6ca48799
      Dr. Stephen Henson 提交于
      Stop spurious "unable to load config info" errors in req
      6ca48799
    • B
      New functions SSL[_CTX]_set_msg_callback(). · a661b653
      Bodo Möller 提交于
      New macros SSL[_CTX]_set_msg_callback_arg().
      
      Message callback imlementation for SSL 3.0/TLS 1.0 (no SSL 2.0 yet).
      
      New '-msg' option for 'openssl s_client' and 'openssl s_server'
      that enable a message callback that displays all protocol messages.
      
      
      In ssl3_get_client_hello (ssl/s3_srvr.c), generate a fatal alert if
      client_version is smaller than the protocol version in use.
      Also change ssl23_get_client_hello (ssl/s23_srvr.c) to select TLS 1.0
      if the client demanded SSL 3.0 but only TLS 1.0 is enabled; then the
      client will at least see that alert.
      
      Fix SSL[_CTX]_ctrl prototype (void * instead of char * for generic
      pointer).
      
      Add/update some OpenSSL copyright notices.
      a661b653
  25. 12 9月, 2001 1 次提交
  26. 11 9月, 2001 3 次提交
  27. 10 9月, 2001 1 次提交
    • B
      Fix apps/openssl.c and ssl/ssltest.c so that they use · 384eff87
      Bodo Möller 提交于
      CRYPTO_set_mem_debug_options() instead of CRYPTO_dbg_set_options(),
      which is the default implementation of the former and should usually
      not be directly used by applications (at least if we assume that the
      options accepted by the default implementation will also be meaningful
      to any other implementations).
      
      Also fix apps/openssl.c and ssl/ssltest such that environment variable
      setting 'OPENSSL_DEBUG_MEMORY=off' actively disables the compiled-in
      library defaults (i.e. such that CRYPTO_MDEBUG is ignored in this
      case).
      384eff87
  28. 28 6月, 2001 1 次提交
    • D
      · b7a26e6d
      Dr. Stephen Henson 提交于
      Modify apps to use NCONF code instead of old CONF code.
      
      Add new extension functions which work with NCONF.
      
      Tidy up extension config routines and remove redundant code.
      
      Fix NCONF_get_number().
      
      Todo: more testing of apps to see they still work...
      b7a26e6d
  29. 24 6月, 2001 1 次提交
  30. 23 6月, 2001 1 次提交
  31. 27 4月, 2001 1 次提交
  32. 11 3月, 2001 1 次提交
  33. 20 2月, 2001 1 次提交
  34. 16 12月, 2000 1 次提交
  35. 14 12月, 2000 1 次提交
  36. 09 12月, 2000 1 次提交
    • G
      Next step in tidying up the LHASH code. · d0fa136c
      Geoff Thorpe 提交于
      DECLARE/IMPLEMENT macros now exist to create type (and prototype) safe
      wrapper functions that avoid the use of function pointer casting yet retain
      type-safety for type-specific callbacks. However, most of the usage within
      OpenSSL itself doesn't really require the extra function because the hash
      and compare callbacks are internal functions declared only for use by the
      hash table. So this change catches all those cases and reimplements the
      functions using the base-level LHASH prototypes and does per-variable
      casting inside those functions to convert to the appropriate item type.
      
      The exception so far is in ssl_lib.c where the hash and compare callbacks
      are not static - they're exposed in ssl.h so their prototypes should not be
      changed. In this last case, the IMPLEMENT_LHASH_*** macros have been left
      intact.
      d0fa136c