[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Fri Nov 25 16:18:57 UTC 2016
The branch master has been updated
via 90fc4832a392f60d2da2f5684d8d20ac8d91cebd (commit)
from 20d14461fb179d00b4f8991fe9fd9560d71f8fb6 (commit)
- Log -----------------------------------------------------------------
commit 90fc4832a392f60d2da2f5684d8d20ac8d91cebd
Author: Andy Polyakov <appro at openssl.org>
Date: Mon Nov 21 15:15:52 2016 +0100
bn/asm/ppc-mont.pl: signal no-op in 32-bit bit build.
The bug was introduced in 80d27cdb84985c697f8fabb7649abf1f54714d13,
one too many instructions was removed. It went unnoticed, because
new subroutine introduced in previous commit is called in real-life
RSA/DSA/DH cases, while original code is called only in rare tests.
The bug was caught in test_fuzz.
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
crypto/bn/asm/ppc-mont.pl | 1 +
1 file changed, 1 insertion(+)
diff --git a/crypto/bn/asm/ppc-mont.pl b/crypto/bn/asm/ppc-mont.pl
index fdc049a..b747f70 100644
--- a/crypto/bn/asm/ppc-mont.pl
+++ b/crypto/bn/asm/ppc-mont.pl
@@ -135,6 +135,7 @@ $code=<<___;
.align 5
.bn_mul_mont_int:
mr $rp,r3 ; $rp is reassigned
+ li r3,0
___
$code.=<<___ if ($BNSZ==4);
cmpwi $num,32 ; longer key performance is not better
More information about the openssl-commits
mailing list