1. 29 12月, 2004 1 次提交
  2. 28 12月, 2004 1 次提交
  3. 05 12月, 2004 1 次提交
  4. 03 12月, 2004 1 次提交
  5. 01 12月, 2004 1 次提交
  6. 29 11月, 2004 1 次提交
  7. 26 11月, 2004 2 次提交
  8. 17 11月, 2004 1 次提交
    • D
      PR: 910 · 826a42a0
      Dr. Stephen Henson 提交于
      Add command line options -certform, -keyform and -pass to s_client and
      s_server. This supports the use of alternative passphrase sources, key formats
      and keys handled by an ENGINE.
      
      Update docs.
      826a42a0
  9. 05 10月, 2004 1 次提交
  10. 07 9月, 2004 1 次提交
  11. 05 8月, 2004 1 次提交
  12. 07 7月, 2004 1 次提交
  13. 18 6月, 2004 1 次提交
  14. 31 5月, 2004 1 次提交
  15. 16 5月, 2004 1 次提交
  16. 13 5月, 2004 1 次提交
  17. 04 5月, 2004 1 次提交
    • B
      - update from current 0.9.6-stable CHANGES file · d5f686d8
      Bodo Möller 提交于
      - update from current 0.9.7-stable CHANGES file:
      
        Now here we have "CHANGES between 0.9.7e and 0.9.8", and I hope
        that all patches mentioned for 0.9.7d and 0.9.7e actually are
        in the CVS HEAD, i.e. what is to become 0.9.8.
      
        I have rewritten the 'openssl ca -create_serial' entry (0.9.8)
        so that it explains the earlier change that is now listed (0.9.7e).
      
        The ENGINE_set_default typo bug entry has been moved from 0.9.8
        to 0.9.7b, which is where it belongs.
      d5f686d8
  18. 26 4月, 2004 1 次提交
  19. 21 4月, 2004 1 次提交
  20. 20 4月, 2004 2 次提交
  21. 31 3月, 2004 1 次提交
  22. 29 3月, 2004 1 次提交
  23. 28 3月, 2004 1 次提交
  24. 27 3月, 2004 1 次提交
  25. 25 3月, 2004 2 次提交
    • G
      Replace the BN_CTX implementation with my current work. I'm leaving the · 5c98b2ca
      Geoff Thorpe 提交于
      little TODO list in there as well as the debugging code (only enabled if
      BN_CTX_DEBUG is defined).
      
      I'd appreciate as much review and testing as can be spared for this. I'll
      commit some changes to other parts of the bignum code shortly to make
      better use of this implementation (no more fixed size limitations). Note
      also that under identical optimisations, I'm seeing a noticable speed
      increase over openssl-0.9.7 - so any feedback to confirm/deny this on other
      systems would also be most welcome.
      5c98b2ca
    • G
      By adding a BN_CTX parameter to the 'rsa_mod_exp' callback, private key · 46ef873f
      Geoff Thorpe 提交于
      operations no longer require two distinct BN_CTX structures. This may put
      more "strain" on the current BN_CTX implementation (which has a fixed limit
      to the number of variables it will hold), but so far this limit is not
      triggered by any of the tests pass and I will be changing BN_CTX in the
      near future to avoid this problem anyway.
      
      This also changes the default RSA implementation code to use the BN_CTX in
      favour of initialising some of its variables locally in each function.
      46ef873f
  26. 23 3月, 2004 1 次提交
  27. 18 3月, 2004 1 次提交
  28. 16 3月, 2004 1 次提交
  29. 14 3月, 2004 2 次提交
  30. 08 3月, 2004 1 次提交
  31. 06 3月, 2004 1 次提交
  32. 20 2月, 2004 1 次提交
  33. 01 2月, 2004 1 次提交
  34. 10 11月, 2003 1 次提交
  35. 05 11月, 2003 1 次提交
  36. 30 10月, 2003 1 次提交
    • G
      BN_CTX is opaque and the static initialiser BN_CTX_init() is not used · 2ce90b9b
      Geoff Thorpe 提交于
      except internally to the allocator BN_CTX_new(), as such this deprecates
      the use of BN_CTX_init() in the API. Moreover, the structure definition of
      BN_CTX is taken out of bn_lcl.h and moved into bn_ctx.c itself.
      
      NDEBUG should probably only be "forced" in the top-level configuration, but
      until it is I will avoid removing it from bn_ctx.c which might surprise
      people with massive slow-downs in their keygens. So I've left it in
      bn_ctx.c but tidied up the preprocessor logic a touch and made it more
      tolerant of debugging efforts.
      2ce90b9b