1. 12 9月, 2001 1 次提交
  2. 24 6月, 2001 1 次提交
  3. 18 6月, 2001 1 次提交
  4. 30 5月, 2001 1 次提交
    • R
      Extend all the loading functions to take an engine pointer, a pass · 30b4c272
      Richard Levitte 提交于
      string (some engines may have certificates protected by a PIN!) and
      a description to put into error messages.
      
      Also, have our own password callback that we can send both a password
      and some prompt info to.  The default password callback in EVP assumes
      that the passed parameter is a password, which isn't always the right
      thing, and the ENGINE code (at least the nCipher one) makes other
      assumptions...
      
      Also, in spite of having the functions to load keys, some utilities
      did the loading all by themselves...  That's changed too.
      30b4c272
  5. 20 2月, 2001 1 次提交
  6. 31 10月, 2000 1 次提交
  7. 29 10月, 2000 1 次提交
  8. 27 10月, 2000 1 次提交
  9. 20 9月, 2000 2 次提交
    • 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
    • D
      Fix a typo in apps/pkcs12.c which was using the wrong part of · 688fbf54
      Dr. Stephen Henson 提交于
      ASN1_TYPE (though they are both ASN1_STRING so it didn't cause
      any problems).
      
      Make 'siglen' an int in apps/dgst.c so we can check the return
      value of BIO_read() etc.
      688fbf54
  10. 18 9月, 2000 1 次提交
  11. 31 8月, 2000 1 次提交
  12. 14 8月, 2000 1 次提交
  13. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  14. 11 2月, 2000 1 次提交
  15. 11 6月, 1999 1 次提交
  16. 08 6月, 1999 1 次提交
  17. 11 5月, 1999 1 次提交
  18. 27 4月, 1999 1 次提交
  19. 24 4月, 1999 1 次提交
  20. 20 4月, 1999 1 次提交
  21. 18 4月, 1999 1 次提交
  22. 21 12月, 1998 3 次提交