1. 09 6月, 2006 1 次提交
  2. 26 5月, 2006 1 次提交
  3. 18 5月, 2006 2 次提交
  4. 15 5月, 2006 1 次提交
  5. 01 6月, 2005 1 次提交
  6. 15 5月, 2005 1 次提交
  7. 06 4月, 2005 1 次提交
  8. 24 11月, 2004 2 次提交
  9. 16 3月, 2004 1 次提交
  10. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  11. 04 4月, 2003 1 次提交
  12. 11 2月, 2003 1 次提交
  13. 31 1月, 2003 1 次提交
  14. 04 12月, 2002 1 次提交
  15. 14 11月, 2002 1 次提交
  16. 13 11月, 2002 1 次提交
  17. 04 10月, 2002 1 次提交
    • D
      · 9a48b07e
      Dr. Stephen Henson 提交于
      Various enhancements to PKCS#12 code, new
      medium level API, improved PKCS12_create
      and additional functionality in pkcs12
      utility.
      9a48b07e
  18. 23 8月, 2002 1 次提交
  19. 02 8月, 2002 1 次提交
  20. 25 4月, 2002 1 次提交
  21. 26 2月, 2002 1 次提交
    • D
      · 31188ee1
      Dr. Stephen Henson 提交于
      Fix new -aes command argument handling
      31188ee1
  22. 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
  23. 21 2月, 2002 1 次提交
  24. 13 12月, 2001 1 次提交
  25. 12 9月, 2001 1 次提交
  26. 02 9月, 2001 1 次提交
    • G
      Make the necessary changes to work with the recent "ex_data" overhaul. · 79aa04ef
      Geoff Thorpe 提交于
      See the commit log message for that for more information.
      
      NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented
      (initialisation by "memset" won't/can't/doesn't work). This fixes that but
      requires that X509_STORE_CTX_init() be able to handle errors - so its
      prototype has been changed to return 'int' rather than 'void'. All uses of
      that function throughout the source code have been tracked down and
      adjusted.
      79aa04ef
  27. 25 6月, 2001 1 次提交
  28. 18 6月, 2001 1 次提交
  29. 11 6月, 2001 1 次提交
  30. 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
  31. 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
  32. 31 12月, 2000 1 次提交
    • D
      · ecbe0781
      Dr. Stephen Henson 提交于
      Rewrite PKCS#12 code and remove some of the old
      horrible macros.
      
      Fix two evil ASN1 bugs. Attempt to use 'ctx' when
      NULL if input is indefinite length constructed
      in asn1_check_tlen() and invalid pointer to ASN1_TYPE
      when reusing existing structure (this took *ages* to
      find because the new PKCS#12 code triggered it).
      ecbe0781
  33. 27 10月, 2000 1 次提交
  34. 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
  35. 18 9月, 2000 1 次提交
  36. 22 8月, 2000 1 次提交
    • D
      Various fixes... · eaa28181
      Dr. Stephen Henson 提交于
      initialize ex_pathlen to -1 so it isn't checked if pathlen
      is not present.
      
      set ucert to NULL in apps/pkcs12.c otherwise it gets freed
      twice.
      
      remove extraneous '\r' in MIME encoder.
      
      Allow a NULL to be passed to X509_gmtime_adj()
      
      
      Make PKCS#7 code use definite length encoding rather then
      the indefinite stuff it used previously.
      eaa28181