1. 21 1月, 2002 1 次提交
  2. 16 11月, 2001 1 次提交
  3. 29 10月, 2001 1 次提交
  4. 25 10月, 2001 1 次提交
    • R
      Due to an increasing number of clashes between modern OpenSSL and · c2e4f17c
      Richard Levitte 提交于
      libdes (which is still used out there) or other des implementations,
      the OpenSSL DES functions are renamed to begin with DES_ instead of
      des_.  Compatibility routines are provided and declared by including
      openssl/des_old.h.  Those declarations are the same as were in des.h
      when the OpenSSL project started, which is exactly how libdes looked
      at that time, and hopefully still looks today.
      
      The compatibility functions will be removed in some future release, at
      the latest in version 1.0.
      c2e4f17c
  5. 04 10月, 2001 1 次提交
  6. 02 10月, 2001 2 次提交
  7. 28 9月, 2001 1 次提交
  8. 27 7月, 2001 1 次提交
  9. 16 5月, 2001 1 次提交
  10. 14 5月, 2001 1 次提交
  11. 07 5月, 2001 1 次提交
  12. 20 4月, 2001 1 次提交
  13. 04 4月, 2001 1 次提交
  14. 08 3月, 2001 1 次提交
  15. 06 3月, 2001 1 次提交
  16. 22 2月, 2001 1 次提交
  17. 20 2月, 2001 2 次提交
    • R
      Let VMS catch up. · 6525ced5
      Richard Levitte 提交于
      6525ced5
    • 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
  18. 19 2月, 2001 1 次提交
  19. 09 1月, 2001 1 次提交
  20. 08 1月, 2001 1 次提交
  21. 29 12月, 2000 2 次提交
  22. 30 11月, 2000 1 次提交
  23. 28 11月, 2000 1 次提交
  24. 22 11月, 2000 1 次提交
  25. 09 11月, 2000 1 次提交
  26. 27 10月, 2000 1 次提交
  27. 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
  28. 16 9月, 2000 2 次提交
  29. 10 9月, 2000 1 次提交
  30. 09 9月, 2000 1 次提交
  31. 18 8月, 2000 1 次提交
  32. 19 6月, 2000 1 次提交
  33. 05 4月, 2000 1 次提交
    • G
      This commit ties the new DSO code (crypto/dso/) into the build for a · 9ec0126e
      Geoff Thorpe 提交于
      variety of platforms. A few are missing, and they will be added in
      eventually, but as this is new stuff, it was better to not break lots of
      platforms in one go that we can't easily test. The changes to "Configure"
      should illustrate how to add support to other systems if you feel like
      having a go.
      
      NB: I'll add something shortly to allow you to add "dlfcn.h" support on
      those platforms that don't have (or need) a dlfcn.h header file. (The
      symbol for Configure will probably by "dlfcn_no_h").
      
      Thanks to Richard Levitte, who is responsible for the dso_dl.c support,
      understanding the trickier aspects of the build process, and giving great
      feedback on everything else.
      
      [Don't use this stuff if you're easily offended by changes to the
      interface or behaviour - it's still work in progress.]
      
      PR:
      9ec0126e
  34. 19 3月, 2000 1 次提交
  35. 14 3月, 2000 1 次提交
  36. 02 3月, 2000 1 次提交