summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nist.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-05-03 20:23:33 +0000
committerNils Larsch <nils@openssl.org>2005-05-03 20:23:33 +0000
commitfcb41c0ee8632a323bd2c2e39f401c4fcf31f3d4 (patch)
tree945d0903022e5ae35601d9e375c267585c46f8f5 /crypto/ec/ecp_nist.c
parent9b62318311b153f1d2d6028c383b2a221ab16a71 (diff)
rewrite of bn_nist.c, disable support for some curves on 64 bit platforms
for now (it was broken anyway)
Diffstat (limited to 'crypto/ec/ecp_nist.c')
-rw-r--r--crypto/ec/ecp_nist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c
index ef2dc47f83..9e3762ff42 100644
--- a/crypto/ec/ecp_nist.c
+++ b/crypto/ec/ecp_nist.c
@@ -112,7 +112,7 @@ const EC_METHOD *EC_GFp_nist_method(void)
return &ret;
}
-#if BN_BITS2 == 64 && UINT_MAX != 4294967295UL && ULONG_MAX != 4294967295UL
+#if BN_BITS2 == 64
#define NO_32_BIT_TYPE
#endif