projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcb157f
)
ghash-x86_64.pl: fix length handling bug.
author
Andy Polyakov
<appro@openssl.org>
Wed, 6 Mar 2013 09:42:21 +0000
(10:42 +0100)
committer
Andy Polyakov
<appro@openssl.org>
Wed, 6 Mar 2013 09:42:21 +0000
(10:42 +0100)
Thanks to Shay Gueron & Vlad Krasnov for report.
crypto/modes/asm/ghash-x86_64.pl
patch
|
blob
|
history
diff --git
a/crypto/modes/asm/ghash-x86_64.pl
b/crypto/modes/asm/ghash-x86_64.pl
index 4bbd4ab5d6cdf145257b312dd4ba868531a3eedc..df4101cc2d4b6915046a82cb37e4cc022272852f 100644
(file)
--- a/
crypto/modes/asm/ghash-x86_64.pl
+++ b/
crypto/modes/asm/ghash-x86_64.pl
@@
-754,8
+754,9
@@
___
$code.=<<___;
add \$0x40,$len
jz .Ldone
- sub \$0x10,$len
movdqu 0x20($Htbl),$HK
+ sub \$0x10,$len
+ jz .Lodd_tail
.Lskip4x:
___
}