1. 20 6月, 2001 2 次提交
  2. 30 4月, 2001 1 次提交
    • D
      Win32 fixes: · c2e45f6d
      Dr. Stephen Henson 提交于
      define LLONG properly for VC++.
      
      stop compiler complaining about signed/unsigned mismatch in apps/engine.c
      c2e45f6d
  3. 19 4月, 2001 1 次提交
    • G
      Changes to "openssl engine" to support the new control command code in · f11bc840
      Geoff Thorpe 提交于
      ENGINE.
      
       * Extra verbosity can be added with more "v"'s, eg. '-vvv' gives
         information about input flags and descriptions for each control command
         in each ENGINE. Check the output of "openssl engine -vvv" for example.
      
       * '-pre <cmd>' and '-post <cmd>' can be used to invoke control commands on
         the specified ENGINE (or on all of them if no engine id is specified,
         although that usually gets pretty ugly). '-post' commands are only
         attempted if '-t' is specified and the engine successfully initialises.
         '-pre' commands are always attempted whether or not '-t' causes an
         initialisation to be tried afterwards. Multiple '-pre' and/or '-post'
         commands can be specified and they will be called in the order they
         occur on the command line.
      
      Parameterised commands (the normal case, there are currently no
      unparameterised ones) are split into command and argument via a separating
      colon. Eg. "openssl engine -pre SO_PATH:/lib/libdriver.so <id>" results in
      the call;
          ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libdriver.so", 0);
      
      Application code should similarly allow arbitrary name-value string pairs
      to be passed into ENGINEs in a manner matching that in apps/engine.c,
      either using the same colon-separated format, or entered as two distinct
      strings. Eg. as stored in a registry. The last parameter of
      ENGINE_ctrl_cmd_string can be changed from 0 to 1 if the command should
      only be attempted if it's supported by the specified ENGINE (eg. for
      commands like "FORK_CHECK:1" that may or may not apply to the run-time
      ENGINE).
      f11bc840
  4. 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
  5. 10 2月, 2001 1 次提交
  6. 07 11月, 2000 1 次提交
  7. 03 11月, 2000 3 次提交
  8. 02 11月, 2000 1 次提交
  9. 01 11月, 2000 1 次提交
  10. 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
  11. 18 9月, 2000 1 次提交
  12. 11 2月, 2000 1 次提交
  13. 12 11月, 1999 1 次提交
    • D
      · 954ef7ef
      Dr. Stephen Henson 提交于
      Merge some common functionality in the apps, delete
      the encryption option in the pkcs7 utility (they never
      did anything) and add a couple more options to pkcs7.
      954ef7ef
  14. 22 7月, 1999 1 次提交
  15. 08 6月, 1999 1 次提交
  16. 30 5月, 1999 1 次提交
  17. 27 4月, 1999 1 次提交
  18. 24 4月, 1999 1 次提交
  19. 21 4月, 1999 1 次提交
  20. 20 4月, 1999 1 次提交
  21. 30 3月, 1999 1 次提交
  22. 31 1月, 1999 1 次提交
  23. 30 1月, 1999 1 次提交