1. 02 Nov, 2000 3 commits
  2. 01 Nov, 2000 2 commits
  3. 31 Oct, 2000 2 commits
  4. 28 Oct, 2000 1 commit
  5. 27 Oct, 2000 1 commit
  6. 26 Oct, 2000 3 commits
  7. 21 Oct, 2000 3 commits
  8. 20 Oct, 2000 1 commit
  9. 14 Oct, 2000 2 commits
  10. 13 Oct, 2000 1 commit
    • Richard Levitte's avatar
      Rework the system to generate shared libraries: · a22fb399
      Richard Levitte authored
        - Make note of the expected extension for the shared libraries and
          if there is a need for symbolic links from for example libcrypto.so.0
          to libcrypto.so.0.9.7.  There is extended info in Configure for
          that.
      
        - Make as few rebuilds of the shared libraries as possible.
      
        - Still avoid linking the OpenSSL programs with the shared libraries.
      
        - When installing, install the shared libraries separately from the
          static ones.
      a22fb399
  11. 12 Oct, 2000 1 commit
  12. 06 Oct, 2000 1 commit
  13. 04 Oct, 2000 1 commit
  14. 01 Oct, 2000 1 commit
  15. 26 Sep, 2000 1 commit
  16. 25 Sep, 2000 1 commit
  17. 24 Sep, 2000 2 commits
  18. 23 Sep, 2000 1 commit
  19. 22 Sep, 2000 3 commits
  20. 21 Sep, 2000 1 commit
  21. 20 Sep, 2000 1 commit
    • Richard Levitte's avatar
      On VMS, stdout may very well lead to a file that is written to in a · 645749ef
      Richard Levitte authored
      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
  22. 19 Sep, 2000 3 commits
    • Bodo Möller's avatar
      Totally remove the supposedly 'faster' variant in · fe035197
      Bodo Möller authored
      BN_mod_mul_montgomery, which calls bn_sqr_recursive
      without much preparation.
      
      bn_sqr_recursive requires the length of its argument to be
      a power of 2, which is not always the case here.
      There's no reason for not using BN_sqr -- if a simpler
      approach to squaring made sense, then why not change
      BN_sqr?  (Using BN_sqr should also speed up DH where g is chosen
      such that it becomes small [e.g., 2] when converted
      to Montgomery representation.)
      
      Case closed :-)
      fe035197
    • Bodo Möller's avatar
      Clarification about Montgomery problem · cb1fbf8e
      Bodo Möller authored
      cb1fbf8e
    • Bodo Möller's avatar
      Document BN_mod_mul_montgomery bug; · a45bd295
      Bodo Möller authored
      make disabled code slightly more correct (this does not solve
      the problem though).
      a45bd295
  23. 18 Sep, 2000 1 commit
  24. 17 Sep, 2000 1 commit
  25. 15 Sep, 2000 1 commit
  26. 14 Sep, 2000 1 commit