1. 21 1月, 2010 1 次提交
  2. 07 1月, 2010 1 次提交
  3. 28 12月, 2009 1 次提交
  4. 17 12月, 2009 1 次提交
  5. 08 12月, 2009 1 次提交
    • D
      Add support for magic cipher suite value (MCSV). Make secure renegotiation · 13f6d57b
      Dr. Stephen Henson 提交于
      work in SSLv3: initial handshake has no extensions but includes MCSV, if
      server indicates RI support then renegotiation handshakes include RI.
      
      NB: current MCSV value is bogus for testing only, will be updated when we
      have an official value.
      
      Change mismatch alerts to handshake_failure as required by spec.
      
      Also have some debugging fprintfs so we can clearly see what is going on
      if OPENSSL_RI_DEBUG is set.
      13f6d57b
  6. 10 11月, 2009 1 次提交
  7. 17 6月, 2009 1 次提交
    • D
      Submitted by: Artem Chuprina <ran@cryptocom.ru> · f0288f05
      Dr. Stephen Henson 提交于
      Reviewed by: steve@openssl.org
      
      Various GOST ciphersuite and ENGINE fixes. Including...
      
      Allow EVP_PKEY_set_derive_peerkey() in encryption operations.
      
      New flag when certificate verify should be omitted in client key exchange.
      f0288f05
  8. 29 5月, 2009 1 次提交
  9. 12 10月, 2008 1 次提交
  10. 27 9月, 2007 1 次提交
  11. 23 9月, 2007 1 次提交
  12. 21 9月, 2007 1 次提交
    • B
      Implement the Opaque PRF Input TLS extension · 761772d7
      Bodo Möller 提交于
      (draft-rescorla-tls-opaque-prf-input-00.txt), and do some cleanups and
      bugfixes on the way.  In particular, this fixes the buffer bounds
      checks in ssl_add_clienthello_tlsext() and in ssl_add_serverhello_tlsext().
      
      Note that the opaque PRF Input TLS extension is not compiled by default;
      see CHANGES.
      761772d7
  13. 31 8月, 2007 1 次提交
  14. 12 8月, 2007 1 次提交
  15. 05 6月, 2007 1 次提交
  16. 20 10月, 2006 1 次提交
  17. 15 6月, 2006 1 次提交
  18. 19 12月, 2005 1 次提交
  19. 08 10月, 2005 1 次提交
  20. 01 10月, 2005 1 次提交
  21. 08 6月, 2005 1 次提交
  22. 31 5月, 2005 1 次提交
  23. 28 4月, 2005 1 次提交
    • D
      Lots of Win32 fixes for DTLS. · 6c61726b
      Dr. Stephen Henson 提交于
      1. "unsigned long long" isn't portable changed: to BN_ULLONG.
      2. The LL prefix isn't allowed in VC++ but it isn't needed where it is used.
      2. Avoid lots of compiler warnings about signed/unsigned mismatches.
      3. Include new library directory pqueue in mk1mf build system.
      4. Update symbols.
      6c61726b
  24. 27 4月, 2005 2 次提交
  25. 26 11月, 2002 1 次提交
  26. 16 10月, 2002 2 次提交
  27. 10 10月, 2002 2 次提交
  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. 14 4月, 2002 1 次提交
  30. 20 2月, 2001 1 次提交
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  31. 01 12月, 2000 1 次提交
  32. 09 6月, 2000 1 次提交
    • R
      Using checks of the existence of HEADER_{foo}_H in other header files · ef33b970
      Richard Levitte 提交于
      was a really bad idea.  For example, the following:
      
      	#include <x509.h>
      	#include <bio.h>
      	#include <asn1.h>
      
      would make sure that things like ASN1_UTCTIME_print() wasn't defined
      unless you moved the inclusion of bio.h to above the inclusion of
      x509.h.  The reason is that x509.h includes asn1.h, and the
      declaration of ASN1_UTCTIME_print() depended on the definition of
      HEADER_BIO_H.  That's what I call an obscure bug.
      
      Instead, this change makes sure that whatever header files are needed
      for the correct process of one header file are included automagically,
      and that the definitions of, for example, BIO-related things are
      dependent on the absence of the NO_{foo} macros.  This is also
      consistent with the way parts of OpenSSL can be excluded at will.
      ef33b970
  33. 25 2月, 2000 1 次提交
  34. 21 2月, 2000 2 次提交
  35. 04 2月, 2000 1 次提交
  36. 11 1月, 2000 1 次提交