1. 09 6月, 2006 1 次提交
  2. 26 5月, 2006 1 次提交
  3. 22 5月, 2006 1 次提交
  4. 19 5月, 2006 1 次提交
  5. 18 5月, 2006 2 次提交
  6. 05 8月, 2005 1 次提交
  7. 06 4月, 2005 1 次提交
  8. 08 9月, 2004 1 次提交
  9. 07 9月, 2004 3 次提交
  10. 02 6月, 2003 1 次提交
  11. 26 2月, 2003 1 次提交
  12. 15 2月, 2003 1 次提交
  13. 31 1月, 2003 1 次提交
  14. 02 8月, 2002 1 次提交
  15. 18 7月, 2002 2 次提交
  16. 08 5月, 2002 1 次提交
  17. 02 5月, 2002 1 次提交
    • D
      · 253ef218
      Dr. Stephen Henson 提交于
      Add apps_startup and bio_err init code to smime.c
      253ef218
  18. 09 4月, 2002 1 次提交
  19. 26 2月, 2002 1 次提交
    • D
      · 31188ee1
      Dr. Stephen Henson 提交于
      Fix new -aes command argument handling
      31188ee1
  20. 22 2月, 2002 1 次提交
    • D
      Config code updates. · 3647bee2
      Dr. Stephen Henson 提交于
      CONF_modules_unload() now calls CONF_modules_finish()
      automatically.
      
      Default use of section openssl_conf moved to
      CONF_modules_load()
      
      Load config file in several openssl utilities.
      
      Most utilities now load modules from the config file,
      though in a few (such as version) this isn't done
      because it couldn't be used for anything.
      
      In the case of ca and req the config file used is
      the same as the utility itself: that is the -config
      command line option can be used to specify an
      alternative file.
      3647bee2
  21. 21 2月, 2002 1 次提交
  22. 12 9月, 2001 1 次提交
  23. 18 6月, 2001 1 次提交
  24. 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
  25. 09 5月, 2001 1 次提交
  26. 11 4月, 2001 2 次提交
  27. 08 4月, 2001 1 次提交
  28. 09 3月, 2001 1 次提交
    • D
      · 13588350
      Dr. Stephen Henson 提交于
      Change the EVP_somecipher() and EVP_somedigest()
      functions to return constant EVP_MD and EVP_CIPHER
      pointers.
      
      Update docs.
      13588350
  29. 20 2月, 2001 2 次提交
    • R
      Use new-style system-id macros everywhere possible. I hope I haven't · bc36ee62
      Richard Levitte 提交于
      missed any.
      
      This compiles and runs on Linux, and external applications have no
      problems with it.  The definite test will be to build this on VMS.
      bc36ee62
    • 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
  30. 17 1月, 2001 1 次提交
    • D
      · 81f169e9
      Dr. Stephen Henson 提交于
      Initial OCSP certificate verify. Not complete,
      it just supports a "trusted OCSP global root CA".
      81f169e9
  31. 29 10月, 2000 1 次提交
  32. 27 10月, 2000 1 次提交
  33. 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
  34. 05 9月, 2000 1 次提交