1. 17 11月, 2000 4 次提交
  2. 12 11月, 2000 1 次提交
  3. 10 11月, 2000 1 次提交
  4. 08 11月, 2000 1 次提交
  5. 07 11月, 2000 3 次提交
  6. 27 10月, 2000 1 次提交
  7. 27 9月, 2000 1 次提交
  8. 25 9月, 2000 1 次提交
  9. 20 9月, 2000 3 次提交
    • B
      Totally remove the supposedly 'faster' variant in · fe035197
      Bodo Möller 提交于
      BN_mod_mul_montgomery, which calls bn_sqr_recursive
      without much preparation.
      
      bn_sqr_recursive requires the length of its argument to be
      a power of 2, which is not always the case here.
      There's no reason for not using BN_sqr -- if a simpler
      approach to squaring made sense, then why not change
      BN_sqr?  (Using BN_sqr should also speed up DH where g is chosen
      such that it becomes small [e.g., 2] when converted
      to Montgomery representation.)
      
      Case closed :-)
      fe035197
    • B
      Document BN_mod_mul_montgomery bug; · a45bd295
      Bodo Möller 提交于
      make disabled code slightly more correct (this does not solve
      the problem though).
      a45bd295
    • B
      Disable buggy code variant in BN_mod_mul_montgomery that was enabled · f4364e07
      Bodo Möller 提交于
      in 0.9.6-beta1 and 0.9.6-beta2 and caused the BN_mont_exp_mont_word()
      failure (bug report "openssh 2.2.0p1 fails with openssl 0.9.6-beta1").
      f4364e07
  10. 18 9月, 2000 1 次提交
  11. 15 9月, 2000 1 次提交
  12. 07 9月, 2000 1 次提交
  13. 04 9月, 2000 2 次提交
  14. 23 8月, 2000 1 次提交
  15. 04 8月, 2000 1 次提交
  16. 28 7月, 2000 2 次提交
  17. 26 7月, 2000 1 次提交
  18. 03 7月, 2000 1 次提交
  19. 02 7月, 2000 1 次提交
  20. 23 6月, 2000 2 次提交
  21. 22 6月, 2000 1 次提交
  22. 13 6月, 2000 4 次提交
  23. 09 6月, 2000 2 次提交
  24. 08 6月, 2000 2 次提交
  25. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d