1. 28 10月, 2016 2 次提交
  2. 22 8月, 2016 1 次提交
  3. 26 7月, 2016 1 次提交
  4. 21 7月, 2016 1 次提交
  5. 24 5月, 2016 1 次提交
  6. 09 5月, 2016 1 次提交
  7. 29 4月, 2016 1 次提交
  8. 12 2月, 2016 1 次提交
  9. 04 2月, 2016 5 次提交
  10. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  11. 05 11月, 2015 1 次提交
  12. 06 3月, 2015 1 次提交
  13. 22 1月, 2015 1 次提交
  14. 27 12月, 2011 1 次提交
  15. 22 11月, 2006 1 次提交
  16. 27 4月, 2005 1 次提交
  17. 13 4月, 2005 1 次提交
  18. 21 3月, 2003 1 次提交
  19. 11 6月, 2002 1 次提交
  20. 23 1月, 2002 1 次提交
  21. 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
  22. 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
  23. 04 9月, 2000 1 次提交
  24. 28 8月, 2000 1 次提交
  25. 05 3月, 2000 1 次提交
  26. 24 2月, 2000 1 次提交
  27. 19 8月, 1999 1 次提交
  28. 10 8月, 1999 1 次提交
    • B
      Updates. · 019a7aba
      Bodo Möller 提交于
      Prototypes and constant declarations for non-copying reads and writes for
      BIO pairs (which is totally untested as of now, so I don't yet commit
      the actual source code, but reserve the numbers to avoid conflicts).
      019a7aba
  29. 16 6月, 1999 1 次提交
  30. 12 6月, 1999 1 次提交
  31. 08 6月, 1999 1 次提交
  32. 14 5月, 1999 1 次提交
  33. 24 4月, 1999 2 次提交
  34. 20 4月, 1999 1 次提交