aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-08-02 18:26:02 +0000
committerBodo Möller <bodo@openssl.org>2002-08-02 18:26:02 +0000
commit909abce8002bf6babc42b8196c812f738d8cd0d6 (patch)
treeccd10250c63a133f958d9222bb183728d190ebec /crypto
parent33d4e690ccd7cfc673af89d299e815ed35cc844a (diff)
downloadopenssl-909abce8002bf6babc42b8196c812f738d8cd0d6.zip
openssl-909abce8002bf6babc42b8196c812f738d8cd0d6.tar.gz
openssl-909abce8002bf6babc42b8196c812f738d8cd0d6.tar.bz2
disable Sun divison algorithm by default
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn_gf2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c
index ed8e704..bf7031b 100644
--- a/crypto/bn/bn_gf2m.c
+++ b/crypto/bn/bn_gf2m.c
@@ -613,7 +613,7 @@ int BN_GF2m_mod_inv_arr(BIGNUM *r, const BIGNUM *xx, const unsigned int p[], BN_
}
-#ifdef OPENSSL_NO_SUN_DIV
+#ifndef OPENSSL_SUN_GF2M_DIV
/* Divide y by x, reduce modulo p, and store the result in r. r could be x
* or y, x could equal y.
*/