1. 08 May, 2001 3 commits
  2. 07 May, 2001 2 commits
  3. 06 May, 2001 2 commits
  4. 04 May, 2001 1 commit
  5. 03 May, 2001 4 commits
  6. 02 May, 2001 1 commit
  7. 30 Apr, 2001 1 commit
  8. 29 Apr, 2001 1 commit
    • Dr. Stephen Henson's avatar
      Win32 fixes: · c2e45f6d
      Dr. Stephen Henson authored
      define LLONG properly for VC++.
      
      stop compiler complaining about signed/unsigned mismatch in apps/engine.c
      c2e45f6d
  9. 27 Apr, 2001 3 commits
  10. 26 Apr, 2001 14 commits
  11. 25 Apr, 2001 2 commits
  12. 22 Apr, 2001 1 commit
  13. 21 Apr, 2001 1 commit
    • Dr. Stephen Henson's avatar
      · c962479b
      Dr. Stephen Henson authored
      Fix ASN1 bug when decoding OTHER type.
      
      Various S/MIME DSA related fixes.
      c962479b
  14. 20 Apr, 2001 2 commits
  15. 19 Apr, 2001 2 commits
    • Geoff Thorpe's avatar
      2a8a10ed
    • Geoff Thorpe's avatar
      Changes to "openssl engine" to support the new control command code in · f11bc840
      Geoff Thorpe authored
      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