1. 10 Oct, 2001 7 commits
  2. 09 Oct, 2001 2 commits
  3. 08 Oct, 2001 6 commits
  4. 04 Oct, 2001 7 commits
  5. 03 Oct, 2001 1 commit
  6. 02 Oct, 2001 4 commits
  7. 01 Oct, 2001 11 commits
  8. 28 Sep, 2001 2 commits
    • Richard Levitte's avatar
      Change HZ in speed to rely on sysconf() if the clock tick is available · a4a8f7b3
      Richard Levitte authored
      that way.  Synchronise s_time with these changes.
      a4a8f7b3
    • Geoff Thorpe's avatar
      ENGINE_register_all_complete() will register all implementations of all · 34c66925
      Geoff Thorpe authored
      algorithms present in all loaded ENGINEs. The result is that if any of
      those ENGINEs successfully initialises, and the ENGINE_TABLE_FLAG_NOINIT
      flag isn't set, then they will always be used (and cached as defaults) in
      preference to software implementations. Ie. accidental auto-detection of
      acceleration hardware :-)
      
      This change stops all implementations being automatically registered in
      "openssl" sub-commands, so that the "setup_engine()" handler in apps.c
      controls which ENGINEs are registered for use. A special case has been
      added that will revert to this "auto-detect" logic, ie. if the "-engine"
      switch is used as;
         -engine auto
      34c66925