1. 25 12月, 2011 1 次提交
    • D
      PR: 2535 · 7e159e01
      Dr. Stephen Henson 提交于
      Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
      Reviewed by: steve
      
      Add SCTP support for DTLS (RFC 6083).
      7e159e01
  2. 02 12月, 2011 1 次提交
  3. 05 9月, 2009 1 次提交
    • D
      PR: 2028 · 07a9d1a2
      Dr. Stephen Henson 提交于
      Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
      Approved by: steve@openssl.org
      
      Fix DTLS cookie management bugs.
      07a9d1a2
  4. 24 7月, 2009 1 次提交
  5. 26 6月, 2009 1 次提交
  6. 16 5月, 2009 1 次提交
  7. 15 4月, 2009 1 次提交
  8. 12 11月, 2008 1 次提交
  9. 01 11月, 2008 1 次提交
  10. 13 3月, 2008 1 次提交
    • D
      And so it begins... · 8931b30d
      Dr. Stephen Henson 提交于
      Initial support for CMS.
      
      Add zlib compression BIO.
      
      Add AES key wrap implementation.
      
      Generalize S/MIME MIME code to support CMS and/or PKCS7.
      8931b30d
  11. 19 9月, 2007 1 次提交
  12. 09 2月, 2007 1 次提交
  13. 25 12月, 2006 1 次提交
    • D
      Experimental streaming PKCS#7 support. · 11d8cdc6
      Dr. Stephen Henson 提交于
      I thought it was about time I dusted this off. This stuff had been sitting on
      my hard drive for *ages* (2003 in fact). Hasn't been tested well and may not
      work properly.
      
      Nothing uses it at present which is just as well.
      
      Think of this as a traditional Christmas present which looks far more
      impressive in the adverts and on the box, some of the bits are missing and
      falls to bits if you play with it too much.
      11d8cdc6
  14. 30 11月, 2006 1 次提交
  15. 19 12月, 2005 1 次提交
  16. 17 12月, 2005 1 次提交
  17. 17 5月, 2005 1 次提交
  18. 27 4月, 2005 2 次提交
  19. 12 8月, 2004 1 次提交
  20. 04 4月, 2003 1 次提交
  21. 21 3月, 2003 1 次提交
  22. 06 2月, 2003 1 次提交
  23. 31 1月, 2003 1 次提交
  24. 13 11月, 2002 1 次提交
  25. 17 7月, 2002 1 次提交
  26. 11 6月, 2002 1 次提交
  27. 25 1月, 2002 1 次提交
  28. 23 1月, 2002 1 次提交
  29. 22 1月, 2002 1 次提交
  30. 12 1月, 2002 1 次提交
  31. 18 12月, 2001 1 次提交
  32. 15 11月, 2001 1 次提交
  33. 16 8月, 2001 1 次提交
  34. 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
  35. 12 10月, 2000 1 次提交
  36. 20 9月, 2000 1 次提交
    • R
      On VMS, stdout may very well lead to a file that is written to in a · 645749ef
      Richard Levitte 提交于
      record-oriented fashion.  That means that every write() will write a
      separate record, which will be read separately by the programs trying
      to read from it.  This can be very confusing.
      
      The solution is to put a BIO filter in the way that will buffer text
      until a linefeed is reached, and then write everything a line at a
      time, so every record written will be an actual line, not chunks of
      lines and not (usually doesn't happen, but I've seen it once) several
      lines in one record.  Voila, BIO_f_linebuffer() is born.
      
      Since we're so close to release time, I'm making this VMS-only for
      now, just to make sure no code is needlessly broken by this.  After
      the release, this BIO method will be enabled on all other platforms as
      well.
      645749ef
  37. 17 9月, 2000 2 次提交
  38. 07 9月, 2000 1 次提交
    • D
      · cfd3bb17
      Dr. Stephen Henson 提交于
      Add docs for BIO_find_type() and friends.
      
      Added function BIO_next() otherwise you can't
      traverse a chain without accessing BIO internals.
      cfd3bb17