From 24a93e6cddacac3b84ffcf59f944819a293aaa84 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 10 Mar 2001 12:37:01 +0000 Subject: [PATCH] In crypto/ec #if 0 out structures which reference (currently) non existent functions because this breaks shared libraries. --- crypto/ec/ecp_nist.c | 3 ++- crypto/ec/ecp_recp.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c index 1e3a7dd033..354130bed2 100644 --- a/crypto/ec/ecp_nist.c +++ b/crypto/ec/ecp_nist.c @@ -55,7 +55,7 @@ #include "ec_lcl.h" - +#if 0 const EC_METHOD *EC_GFp_nist_method(void) { static const EC_METHOD ret = { @@ -95,6 +95,7 @@ const EC_METHOD *EC_GFp_nist_method(void) return &ret; } +#endif int ec_GFp_nist_group_init(EC_GROUP *group) diff --git a/crypto/ec/ecp_recp.c b/crypto/ec/ecp_recp.c index c8832de86d..e8d8382964 100644 --- a/crypto/ec/ecp_recp.c +++ b/crypto/ec/ecp_recp.c @@ -55,7 +55,7 @@ #include "ec_lcl.h" - +#if 0 const EC_METHOD *EC_GFp_recp_method(void) { static const EC_METHOD ret = { @@ -95,7 +95,7 @@ const EC_METHOD *EC_GFp_recp_method(void) return &ret; } - +#endif int ec_GFp_recp_group_init(EC_GROUP *group) { -- 2.25.1