1. 06 Oct, 2000 1 commit
  2. 04 Oct, 2000 1 commit
  3. 01 Oct, 2000 1 commit
  4. 26 Sep, 2000 1 commit
  5. 25 Sep, 2000 1 commit
  6. 24 Sep, 2000 2 commits
  7. 23 Sep, 2000 1 commit
  8. 22 Sep, 2000 3 commits
  9. 21 Sep, 2000 1 commit
  10. 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
  11. 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
  12. 18 Sep, 2000 1 commit
  13. 17 Sep, 2000 1 commit
  14. 15 Sep, 2000 1 commit
  15. 14 Sep, 2000 4 commits
  16. 13 Sep, 2000 2 commits
  17. 12 Sep, 2000 1 commit
  18. 11 Sep, 2000 1 commit
  19. 10 Sep, 2000 1 commit
  20. 07 Sep, 2000 3 commits
  21. 05 Sep, 2000 4 commits
    • Dr. Stephen Henson's avatar
      Fix typo in rsautl. · bbb72003
      Dr. Stephen Henson authored
      Add support for settable verify time in X509_verify_cert().
      
      Document rsautl utility.
      bbb72003
    • Dr. Stephen Henson's avatar
      *BIG* verify code reorganisation. · 2f043896
      Dr. Stephen Henson authored
      The old code was painfully primitive and couldn't handle
      distinct certificates using the same subject name.
      
      The new code performs several tests on a candidate issuer
      certificate based on certificate extensions.
      
      It also adds several callbacks to X509_VERIFY_CTX so its
      behaviour can be customised.
      
      Unfortunately some hackery was needed to persuade X509_STORE
      to tolerate this. This should go away when X509_STORE is
      replaced, sometime...
      
      This must have broken something though :-(
      2f043896
    • Dr. Stephen Henson's avatar
      Keep a not of original encoding in certificate requests. · 34216c04
      Dr. Stephen Henson authored
      Add new option to PKCS7_sign to exclude S/MIME capabilities.
      34216c04
    • Bodo Möller's avatar
      Mention fix in bio_lib.c. · 22c7ea40
      Bodo Möller authored
      22c7ea40
  22. 04 Sep, 2000 2 commits
  23. 03 Sep, 2000 1 commit
  24. 01 Sep, 2000 1 commit
  25. 30 Aug, 2000 1 commit