1. 09 3月, 2004 2 次提交
  2. 23 2月, 2004 1 次提交
  3. 07 2月, 2004 1 次提交
  4. 30 1月, 2004 2 次提交
  5. 29 1月, 2004 1 次提交
  6. 25 1月, 2004 1 次提交
  7. 27 12月, 2003 2 次提交
  8. 06 12月, 2003 2 次提交
  9. 03 12月, 2003 1 次提交
    • G
      Incremental cleanups to bn_lib.c. · 2bfd2c74
      Geoff Thorpe 提交于
      - Add missing bn_check_top() calls and relocate some others
      - Use BN_is_zero() where appropriate
      - Remove assert()s that bn_check_top() is already covering
      - Simplify the code in places (esp. bn_expand2())
      - Only keep ambiguous zero handling if BN_STRICT isn't defined
      - Remove some white-space and make some other aesthetic tweaks
      2bfd2c74
  10. 02 12月, 2003 7 次提交
  11. 01 12月, 2003 3 次提交
  12. 30 11月, 2003 1 次提交
  13. 29 11月, 2003 1 次提交
  14. 28 11月, 2003 1 次提交
  15. 26 11月, 2003 2 次提交
  16. 25 11月, 2003 1 次提交
  17. 23 11月, 2003 1 次提交
    • G
      BN_div() cleanup: replace the use of BN_sub and BN_add with bn_sub_words · 9e989810
      Geoff Thorpe 提交于
      and bn_add_words to avoid using fake bignums to window other bignums that
      can lead to corruption. This change allows all bignum tests to pass with
      BN_DEBUG and BN_DEBUG_RAND debugging and valgrind. NB: This should be
      tested on a few different architectures and configuration targets, as the
      bignum code this deals with is quite preprocessor (and assembly) sensitive.
      
      Submitted by: Nils Narsch
      Reviewed by: Geoff Thorpe, Ulf Moeller
      9e989810
  18. 15 11月, 2003 1 次提交
  19. 13 11月, 2003 1 次提交
    • G
      This rewrites two "for" loops in BN_rshift() - equality with zero is · 9dde17e8
      Geoff Thorpe 提交于
      generally a more efficient comparison than comparing two integers, and the
      first of these two loops was off-by-one (copying one too many values). This
      change also removes a superfluous assignment that would set an unused word
      to zero (and potentially allow an overrun in some cases).
      
      Submitted by: Nils Larsch
      Reviewed by: Geoff Thorpe
      9dde17e8
  20. 07 11月, 2003 3 次提交
  21. 06 11月, 2003 3 次提交
  22. 05 11月, 2003 1 次提交
  23. 04 11月, 2003 1 次提交