summaryrefslogtreecommitdiffstats
path: root/crypto/bn/asm
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2009-12-29 11:18:16 +0000
committerAndy Polyakov <appro@openssl.org>2009-12-29 11:18:16 +0000
commit70b76d392fdfe192843c1a1f56389ffd1f493425 (patch)
tree9fe47ab09242fad66ac2e0de4e20cc665e465c2c /crypto/bn/asm
parent6a9d28f9e4b536d53365733672806e914f513493 (diff)
ppccap.c: fix compiler warning and perform sanity check outside signal masking.
ppc64-mont.pl: clarify comment and fix spelling.
Diffstat (limited to 'crypto/bn/asm')
-rw-r--r--crypto/bn/asm/ppc64-mont.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/asm/ppc64-mont.pl b/crypto/bn/asm/ppc64-mont.pl
index 985a2b2744..51e6bbb339 100644
--- a/crypto/bn/asm/ppc64-mont.pl
+++ b/crypto/bn/asm/ppc64-mont.pl
@@ -56,10 +56,10 @@
# that asynchronous signals have to be blocked upon entry to this
# subroutine. Signal masking (and complementary unmasking) has quite
# an impact on performance, naturally larger for shorter keys. It's
-# so severe that shorter key performance can be as low as 1/3 of
+# so severe that 512-bit key performance can be as low as 1/3 of
# expected one. This is why this routine can be engaged for longer
# key operations only, see crypto/ppccap.c for further details.
-# Alternative is to break dependance on upper halves on GPRs...
+# Alternative is to break dependence on upper halves on GPRs...
# MacOS X is an exception from this and doesn't require signal
# masking, and that's where above improvement coefficients were
# collected.