1. 14 3月, 2004 2 次提交
    • G
      The efforts to eliminate the dual-representation of zero and to ensure · 5d735465
      Geoff Thorpe 提交于
      bignums are passed in and out of functions and APIs in a consistent form
      has highlighted that zero-valued bignums don't need any allocated word
      data. The use of BN_set_word() to initialise a bignum to zero causes
      needless allocation and gives it a return value that must be checked. This
      change converts BN_zero() to a self-contained macro that has no
      return/expression value and does not cause any expansion of bignum data.
      
      Note, it would be tempting to rewrite the deprecated version as a
      success-valued comma expression, such as;
         #define BN_zero(a) ((a)->top = (a)->neg = 0, 1)
      However, this evaluates 'a' twice and would confuse initialisation loops
      (eg. while(..) { BN_zero(bn++) } ). As such, the deprecated version
      continues to use BN_set_word().
      5d735465
    • G
      Document a change I'd already made, and at the same time, correct the · 9e051bac
      Geoff Thorpe 提交于
      change to work properly; BN_zero() should set 'neg' to zero as well as
      'top' to match the behaviour of BN_new().
      9e051bac
  2. 13 3月, 2004 1 次提交
    • A
      IRIX 6.x shared build fix-up. · 30fbcaa2
      Andy Polyakov 提交于
      For reference. Note that both cc and gcc support -Wl flag, but we can't
      use -Wl,-[not]all with both drivers, because cc rearranges options
      passed through -Wl. We can't use -Wl,-all,libcrypto.a,-notall with cc
      either, because it refuses to start with "no input" error.
      30fbcaa2
  3. 10 3月, 2004 1 次提交
  4. 09 3月, 2004 3 次提交
  5. 08 3月, 2004 1 次提交
  6. 06 3月, 2004 5 次提交
  7. 05 3月, 2004 1 次提交
    • D
      Typos. · 91180d45
      Dr. Stephen Henson 提交于
      Reported by: Jose Castejon-Amenedo <Jose.Castejon-Amenedo@hp.com>
      91180d45
  8. 04 3月, 2004 1 次提交
  9. 02 3月, 2004 4 次提交
  10. 01 3月, 2004 2 次提交
  11. 28 2月, 2004 1 次提交
  12. 27 2月, 2004 3 次提交
  13. 23 2月, 2004 2 次提交
  14. 20 2月, 2004 1 次提交
  15. 11 2月, 2004 1 次提交
  16. 08 2月, 2004 1 次提交
  17. 07 2月, 2004 1 次提交
  18. 01 2月, 2004 1 次提交
  19. 30 1月, 2004 2 次提交
  20. 29 1月, 2004 6 次提交