1. 16 5月, 2009 1 次提交
  2. 15 4月, 2009 1 次提交
  3. 12 11月, 2008 1 次提交
  4. 01 11月, 2008 1 次提交
  5. 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
  6. 19 9月, 2007 1 次提交
  7. 09 2月, 2007 1 次提交
  8. 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
  9. 30 11月, 2006 1 次提交
  10. 19 12月, 2005 1 次提交
  11. 17 12月, 2005 1 次提交
  12. 17 5月, 2005 1 次提交
  13. 27 4月, 2005 2 次提交
  14. 12 8月, 2004 1 次提交
  15. 04 4月, 2003 1 次提交
  16. 21 3月, 2003 1 次提交
  17. 06 2月, 2003 1 次提交
  18. 31 1月, 2003 1 次提交
  19. 13 11月, 2002 1 次提交
  20. 17 7月, 2002 1 次提交
  21. 11 6月, 2002 1 次提交
  22. 25 1月, 2002 1 次提交
  23. 23 1月, 2002 1 次提交
  24. 22 1月, 2002 1 次提交
  25. 12 1月, 2002 1 次提交
  26. 18 12月, 2001 1 次提交
  27. 15 11月, 2001 1 次提交
  28. 16 8月, 2001 1 次提交
  29. 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
  30. 12 10月, 2000 1 次提交
  31. 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
  32. 17 9月, 2000 2 次提交
  33. 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
  34. 28 8月, 2000 1 次提交
  35. 18 8月, 2000 1 次提交
  36. 28 7月, 2000 1 次提交
  37. 21 6月, 2000 1 次提交
    • D
      · 13083215
      Dr. Stephen Henson 提交于
      Fixes for Win32 build.
      
      This is mostly a work around for the old VC++ problem
      that it treats func() as func(void).
      
      Various prototypes had been added to 'compare' function
      pointers that triggered this. This could be fixed by removing
      the prototype, adding function pointer casts to every call or
      changing the passed function to use the expected arguments.
      I mostly did the latter.
      
      The mkdef.pl script was modified to remove the typesafe
      functions which no longer exist.
      
      Oh and some functions called OPENSSL_freeLibrary() were
      changed back to FreeLibrary(), wonder how that happened :-)
      13083215
  38. 17 6月, 2000 1 次提交
    • D
      Safe stack reorganisation in terms of function casts. · 3aceb94b
      Dr. Stephen Henson 提交于
      After some messing around this seems to work but needs
      a few more tests. Working out the syntax for sk_set_cmp_func()
      (cast it to a function that itself returns a function pointer)
      was painful :-(
      
      Needs some testing to see what other compilers think of this
      syntax.
      
      Also needs similar stuff for ASN1_SET_OF etc etc.
      3aceb94b