1. 13 7月, 2001 1 次提交
    • D
      · ee306a13
      Dr. Stephen Henson 提交于
      Initial OCSP server support, using index.txt format.
      
      This can process internal requests or behave like a
      mini responder.
      
      Todo: documentation, update usage info.
      ee306a13
  2. 28 6月, 2001 1 次提交
    • D
      · b7a26e6d
      Dr. Stephen Henson 提交于
      Modify apps to use NCONF code instead of old CONF code.
      
      Add new extension functions which work with NCONF.
      
      Tidy up extension config routines and remove redundant code.
      
      Fix NCONF_get_number().
      
      Todo: more testing of apps to see they still work...
      b7a26e6d
  3. 27 6月, 2001 1 次提交
  4. 18 6月, 2001 1 次提交
  5. 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
  6. 22 5月, 2001 1 次提交
  7. 16 3月, 2001 2 次提交
    • D
      Add copy_extensions option to 'ca' utility. · 791bd0cd
      Dr. Stephen Henson 提交于
      791bd0cd
    • D
      · 535d79da
      Dr. Stephen Henson 提交于
      Overhaul the display of certificate details in
      the 'ca' utility. This can now be extensively
      customised in the configuration file and handles
      multibyte strings and extensions properly.
      
      This is required when extensions copying from
      certificate requests is supported: the user
      must be able to view the extensions before
      allowing a certificate to be issued.
      535d79da
  8. 05 3月, 2001 1 次提交
  9. 22 2月, 2001 1 次提交
  10. 21 2月, 2001 1 次提交
  11. 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
  12. 19 2月, 2001 1 次提交
  13. 16 2月, 2001 1 次提交
  14. 10 2月, 2001 1 次提交
    • D
      · ccb08f98
      Dr. Stephen Henson 提交于
      Fix CRL printing to correctly show when there are no revoked certificates.
      
      Make ca.c correctly initialize the revocation date.
      
      Make ASN1_UTCTIME_set_string() and ASN1_GENERALIZEDTIME_set_string() set the
      string type: so they can initialize ASN1_TIME structures properly.
      ccb08f98
  15. 06 2月, 2001 1 次提交
  16. 18 1月, 2001 1 次提交
  17. 15 1月, 2001 1 次提交
  18. 14 1月, 2001 1 次提交
  19. 12 1月, 2001 1 次提交
  20. 16 12月, 2000 1 次提交
  21. 09 12月, 2000 1 次提交
    • D
      · 9d6b1ce6
      Dr. Stephen Henson 提交于
      Merge from the ASN1 branch of new ASN1 code
      to main trunk.
      
      Lets see if the makes it to openssl-cvs :-)
      9d6b1ce6
  22. 03 12月, 2000 2 次提交
  23. 02 12月, 2000 1 次提交
    • G
      First step in tidying up the LHASH code. The callback prototypes (and · 385d8138
      Geoff Thorpe 提交于
      casts) used in the lhash code are about as horrible and evil as they can
      be. For starters, the callback prototypes contain empty parameter lists.
      Yuck.
      
      This first change defines clearer prototypes - including "typedef"'d
      function pointer types to use as "hash" and "compare" callbacks, as well as
      the callbacks passed to the lh_doall and lh_doall_arg iteration functions.
      Now at least more explicit (and clear) casting is required in all of the
      dependant code - and that should be included in this commit.
      
      The next step will be to hunt down and obliterate some of the function
      pointer casting being used when it's not necessary - a particularly evil
      variant exists in the implementation of lh_doall.
      385d8138
  24. 29 10月, 2000 1 次提交
  25. 27 10月, 2000 1 次提交
  26. 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
  27. 04 9月, 2000 1 次提交
  28. 23 6月, 2000 1 次提交
  29. 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
  30. 16 5月, 2000 2 次提交
  31. 08 3月, 2000 1 次提交
  32. 26 2月, 2000 1 次提交
  33. 17 2月, 2000 1 次提交
  34. 15 2月, 2000 1 次提交
  35. 11 2月, 2000 1 次提交
  36. 04 2月, 2000 1 次提交