1. 24 6月, 2001 1 次提交
  2. 23 6月, 2001 1 次提交
  3. 27 4月, 2001 1 次提交
  4. 11 3月, 2001 1 次提交
  5. 20 2月, 2001 1 次提交
  6. 16 12月, 2000 1 次提交
  7. 14 12月, 2000 1 次提交
  8. 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
  9. 03 12月, 2000 2 次提交
  10. 02 12月, 2000 1 次提交
    • G
      First step in tidying up the LHASH code. The callback prototypes (and · 385d8138
      Geoff Thorpe 提交于
      casts) used in the lhash code are about as horrible and evil as they can
      be. For starters, the callback prototypes contain empty parameter lists.
      Yuck.
      
      This first change defines clearer prototypes - including "typedef"'d
      function pointer types to use as "hash" and "compare" callbacks, as well as
      the callbacks passed to the lh_doall and lh_doall_arg iteration functions.
      Now at least more explicit (and clear) casting is required in all of the
      dependant code - and that should be included in this commit.
      
      The next step will be to hunt down and obliterate some of the function
      pointer casting being used when it's not necessary - a particularly evil
      variant exists in the implementation of lh_doall.
      385d8138
  11. 07 11月, 2000 1 次提交
  12. 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
  13. 02 8月, 2000 1 次提交
  14. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  15. 18 3月, 2000 2 次提交
  16. 14 3月, 2000 1 次提交
  17. 13 3月, 2000 1 次提交
  18. 06 2月, 2000 2 次提交
  19. 31 1月, 2000 1 次提交
  20. 15 1月, 2000 1 次提交
  21. 18 12月, 1999 4 次提交
  22. 17 12月, 1999 1 次提交
  23. 10 7月, 1999 1 次提交
  24. 25 6月, 1999 1 次提交
  25. 11 6月, 1999 1 次提交
  26. 13 5月, 1999 1 次提交
    • U
      VMS support. · 7d7d2cbc
      Ulf Möller 提交于
      Submitted by: Richard Levitte <richard@levitte.org>
      7d7d2cbc
  27. 11 5月, 1999 1 次提交
  28. 27 4月, 1999 1 次提交
  29. 24 4月, 1999 1 次提交
  30. 20 4月, 1999 1 次提交
  31. 11 4月, 1999 1 次提交
    • B
      · fc8ee06b
      Bodo Möller 提交于
      Submitted by:
      Reviewed by:
      PR:
      fc8ee06b
  32. 10 1月, 1999 1 次提交
  33. 02 1月, 1999 1 次提交
    • R
      First cut of a cleanup for apps/. First the `ssleay' program is now named · 06d5b162
      Ralf S. Engelschall 提交于
      `openssl' and second, the shortcut symlinks for the `openssl <command>' are no
      longer created. This way we have a single and consistent command line
      interface `openssl <command>', similar to `cvs <command>'.
      
      Notice, the openssl.cnf, openssl.c and progs.pl files were changed after a
      repository copy, i.e. they still contain the complete file history.
      06d5b162
  34. 21 12月, 1998 1 次提交