1. 20 Mar, 2003 23 commits
  2. 19 Mar, 2003 2 commits
  3. 18 Mar, 2003 1 commit
  4. 15 Mar, 2003 1 commit
  5. 14 Mar, 2003 2 commits
  6. 13 Mar, 2003 4 commits
  7. 12 Mar, 2003 2 commits
  8. 11 Mar, 2003 1 commit
    • Geoff Thorpe's avatar
      The default implementation of DSA_METHOD has an interdependence on the · 879650b8
      Geoff Thorpe authored
      dsa_mod_exp() and bn_mod_exp() handlers from dsa_do_verify() and
      dsa_sign_setup(). When another DSA_METHOD implementation does not define
      these lower-level handlers, it becomes impossible to do a fallback to
      software on errors using a simple DSA_OpenSSL()->fn(key).
      
      This change allows the default DSA_METHOD to function in such circumstances
      by only using dsa_mod_exp() and bn_mod_exp() handlers if they exist,
      otherwise using BIGNUM implementations directly (which is what those
      handlers did before this change). There should be no noticable difference
      for the software case, or indeed any custom case that didn't already
      segfault, except perhaps that there is now one less level of indirection in
      all cases.
      
      PR: 507
      879650b8
  9. 28 Feb, 2003 3 commits
  10. 27 Feb, 2003 1 commit
    • Dr. Stephen Henson's avatar
      Encryption BIOs misbehave when used with non blocking I/O. · b8dc9693
      Dr. Stephen Henson authored
      Two fixes:
      
      1. If BIO_write() fails inside enc_write() it should return the
         total number of bytes successfully written.
      
      2. If BIO_write() fails during BIO_flush() it should return immediately
         with the error code: previously it would fall through to the final
         encrypt, corrupting the buffer.
      b8dc9693