1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/digest/sha2/sha2.c (SHA256_Update, SHA512_Update): avoid Bus

Error caused by unalignment access on Sparc-Solaris (and possibly on
  other similar environment.) This patch just do memcpy always instead
  of checking architecture. I see no perf drop on my 64bit env. For
  more details, see #4320.

* test/digest/test_digest.rb: add test for unalignment access.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nahi 2011-07-15 03:03:31 +00:00
parent 0419cfc2ed
commit e56f2abe4b
3 changed files with 23 additions and 2 deletions

View file

@ -78,6 +78,15 @@ module TestDigest
}
end
def test_alignment
md = self.class::ALGO.new
assert_nothing_raised('#4320') {
md.update('a' * 97)
md.update('a' * 97)
md.hexdigest
}
end
class TestMD5 < Test::Unit::TestCase
include TestDigest
ALGO = Digest::MD5