1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 31 10月, 2019 1 次提交
  6. 17 10月, 2019 1 次提交
  7. 28 9月, 2019 1 次提交
  8. 05 12月, 2018 1 次提交
  9. 18 10月, 2017 1 次提交
  10. 09 10月, 2017 1 次提交
  11. 01 2月, 2017 2 次提交
  12. 18 5月, 2016 1 次提交
  13. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  14. 23 5月, 2015 1 次提交
    • M
      Reject negative shifts for BN_rshift and BN_lshift · 7cc18d81
      Matt Caswell 提交于
      The functions BN_rshift and BN_lshift shift their arguments to the right or
      left by a specified number of bits. Unpredicatable results (including
      crashes) can occur if a negative number is supplied for the shift value.
      
      Thanks to Mateusz Kocielski (LogicalTrust), Marek Kroemeke and Filip Palian
      for discovering and reporting this issue.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      7cc18d81
  15. 14 5月, 2015 1 次提交
  16. 06 5月, 2015 1 次提交
  17. 22 1月, 2015 1 次提交
  18. 19 8月, 2014 1 次提交
  19. 18 10月, 2011 1 次提交
  20. 28 10月, 2008 1 次提交
  21. 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
  22. 07 11月, 2003 1 次提交
  23. 05 11月, 2003 1 次提交
  24. 01 12月, 2000 1 次提交
  25. 29 11月, 2000 1 次提交
  26. 07 11月, 2000 1 次提交
  27. 13 6月, 2000 1 次提交
  28. 05 6月, 1999 1 次提交
  29. 20 4月, 1999 1 次提交
  30. 21 12月, 1998 2 次提交