1. 06 1月, 2006 1 次提交
  2. 03 1月, 2006 2 次提交
  3. 06 12月, 2005 1 次提交
  4. 08 10月, 2005 1 次提交
  5. 01 10月, 2005 1 次提交
  6. 29 8月, 2005 1 次提交
  7. 15 8月, 2005 1 次提交
  8. 16 7月, 2005 1 次提交
    • N
      make · 3eeaab4b
      Nils Larsch 提交于
          	./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa]
          	make depend all test
      work again
      
      PR: 1159
      3eeaab4b
  9. 24 6月, 2005 1 次提交
  10. 11 6月, 2005 1 次提交
  11. 12 5月, 2005 1 次提交
  12. 27 4月, 2005 2 次提交
  13. 14 4月, 2005 1 次提交
  14. 31 3月, 2005 1 次提交
  15. 30 3月, 2005 1 次提交
  16. 13 1月, 2005 1 次提交
  17. 07 9月, 2004 1 次提交
  18. 20 4月, 2004 1 次提交
  19. 28 12月, 2003 1 次提交
  20. 06 10月, 2003 1 次提交
  21. 27 9月, 2003 1 次提交
  22. 30 1月, 2003 1 次提交
  23. 16 1月, 2003 1 次提交
  24. 13 11月, 2002 1 次提交
  25. 29 10月, 2002 1 次提交
    • G
      Correct and enhance the behaviour of "internal" session caching as it · e0db2eed
      Geoff Thorpe 提交于
      relates to SSL_CTX flags and the use of "external" session caching. The
      existing flag, "SSL_SESS_CACHE_NO_INTERNAL_LOOKUP" remains but is
      supplemented with a complimentary flag, "SSL_SESS_CACHE_NO_INTERNAL_STORE".
      The bitwise OR of the two flags is also defined as
      "SSL_SESS_CACHE_NO_INTERNAL" and is the flag that should be used by most
      applications wanting to implement session caching *entirely* by its own
      provided callbacks. As the documented behaviour contradicted actual
      behaviour up until recently, and since that point behaviour has itself been
      inconsistent anyway, this change should not introduce any compatibility
      problems. I've adjusted the relevant documentation to elaborate about how
      this works.
      
      Kudos to "Nadav Har'El" <nyh@math.technion.ac.il> for diagnosing these
      anomalies and testing this patch for correctness.
      
      PR: 311
      e0db2eed
  26. 17 8月, 2002 1 次提交
  27. 12 8月, 2002 1 次提交
  28. 09 8月, 2002 1 次提交
    • B
      ECC ciphersuite support · ea262260
      Bodo Möller 提交于
      Submitted by: Douglas Stebila <douglas.stebila@sun.com>
      (Authors: Vipul Gupta and Sumit Gupta, Sun Microsystems Laboratories)
      ea262260
  29. 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
  30. 28 2月, 2002 1 次提交
  31. 27 2月, 2002 2 次提交
  32. 08 2月, 2002 1 次提交
  33. 15 1月, 2002 1 次提交
  34. 12 1月, 2002 1 次提交
  35. 25 10月, 2001 1 次提交
  36. 21 10月, 2001 1 次提交
    • 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
  37. 18 10月, 2001 1 次提交