1. 07 May, 2001 2 commits
  2. 06 May, 2001 2 commits
  3. 04 May, 2001 1 commit
  4. 03 May, 2001 4 commits
  5. 02 May, 2001 1 commit
  6. 30 Apr, 2001 1 commit
  7. 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
  8. 27 Apr, 2001 3 commits
  9. 26 Apr, 2001 14 commits
  10. 25 Apr, 2001 2 commits
  11. 22 Apr, 2001 1 commit
  12. 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
  13. 20 Apr, 2001 2 commits
  14. 19 Apr, 2001 4 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
    • Geoff Thorpe's avatar
      Some more tweaks to ENGINE code. · e2f3ae12
      Geoff Thorpe authored
      This change adds some basic control commands to the existing ENGINEs
      (except the software 'openssl' engine). All these engines currently load
      shared-libraries for hardware APIs, so they've all been given "SO_PATH"
      commands that will configure the chosen ENGINE to load its shared library
      from the given path. Eg. by calling;
          ENGINE_ctrl_cmd_string(e, "SO_PATH", <path>, 0).
      
      The nCipher 'chil' ENGINE has also had "FORK_CHECK" and "THREAD_LOCKING"
      commands added so these settings could be handled via application-level
      configuration rather than in application source code.
      
      Changes to "openssl engine" to test and examine these control commands will
      be made shortly. It will also provide the necessary tips to application
      programs wanting to support these dynamic control commands.
      e2f3ae12
    • Geoff Thorpe's avatar
      Some BIG tweaks to ENGINE code. · 40fcda29
      Geoff Thorpe authored
      This change adds some new functionality to the ENGINE code and API to
      make it possible for ENGINEs to describe and implement their own control
      commands that can be interrogated and used by calling applications at
      run-time. The source code includes numerous comments explaining how it all
      works and some of the finer details. But basically, an ENGINE will normally
      declare an array of ENGINE_CMD_DEFN entries in its ENGINE - and the various
      new ENGINE_CTRL_*** command types take care of iterating through this list
      of definitions, converting command numbers to names, command names to
      numbers, getting descriptions, getting input flags, etc. These
      administrative commands are handled directly in the base ENGINE code rather
      than in each ENGINE's ctrl() handler, unless they specify the
      ENGINE_FLAGS_MANUAL_CMD_CTRL flag (ie. if they're doing something clever or
      dynamic with the command definitions).
      
      There is also a new function, ENGINE_cmd_is_executable(), that will
      determine if an ENGINE control command is of an "executable" type that
      can be used in another new function, ENGINE_ctrl_cmd_string(). If not, the
      control command is not supposed to be exposed out to user/config level
      access - eg. it could involve the exchange of binary data, returning
      results to calling code, etc etc. If the command is executable then
      ENGINE_ctrl_cmd_string() can be called using a name/arg string pair. The
      control command's input flags will be used to determine necessary
      conversions before the control command is called, and commands of this
      form will always return zero or one (failure or success, respectively).
      This is set up so that arbitrary applications can support control commands
      in a consistent way so that tweaking particular ENGINE behaviour is
      specific to the ENGINE and the host environment, and independant of the
      application or OpenSSL.
      
      Some code demonstrating this stuff in action will applied shortly to the
      various ENGINE implementations, as well as "openssl engine" support for
      executing arbitrary control commands before and/or after initialising
      various ENGINEs.
      40fcda29
  15. 18 Apr, 2001 1 commit
    • Geoff Thorpe's avatar
      Some more tweaks to ENGINE code. · 59bc3126
      Geoff Thorpe authored
      The existing ENGINEs (including the default 'openssl' software engine) were
      static, declared inside the source file for each engine implementation. The
      reason this was not going boom was that all the ENGINEs had reference
      counts that never hit zero (once linked into the internal list, each would
      always have at least 1 lasting structural reference).
      
      To fix this so it will stay standing when an "unload" function is added to
      match ENGINE_load_builtin_engines(), the "constructor" functions for each
      ENGINE implementation have been changed to dynamically allocate and
      construct their own ENGINEs using API functions. The other benefit of this
      is that no ENGINE implementation has to include the internal "engine_int.h"
      header file any more.
      59bc3126