1. 19 Oct, 2016 5 commits
  2. 18 Oct, 2016 4 commits
  3. 17 Oct, 2016 6 commits
  4. 15 Oct, 2016 3 commits
  5. 14 Oct, 2016 5 commits
  6. 13 Oct, 2016 7 commits
  7. 12 Oct, 2016 4 commits
  8. 11 Oct, 2016 4 commits
  9. 10 Oct, 2016 2 commits
    • David Benjamin's avatar
      Fix up bn_prime.pl formatting. · 0e831db0
      David Benjamin authored
      
      
      Align at 5 characters, not 4. There are 5-digit numbers in the output.
      Also avoid emitting an extra blank line and trailing whitespace.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      0e831db0
    • David Benjamin's avatar
      Remove trailing whitespace from some files. · 609b0852
      David Benjamin authored
      
      
      The prevailing style seems to not have trailing whitespace, but a few
      lines do. This is mostly in the perlasm files, but a few C files got
      them after the reformat. This is the result of:
      
        find . -name '*.pl' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.c' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.h' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
      
      Then bn_prime.h was excluded since this is a generated file.
      
      Note mkerr.pl has some changes in a heredoc for some help output, but
      other lines there lack trailing whitespace too.
      
      Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      609b0852