aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/dh/dh_key.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/crypto/dh/dh_key.c')
-rw-r--r--openssl/crypto/dh/dh_key.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/openssl/crypto/dh/dh_key.c b/openssl/crypto/dh/dh_key.c
index 79dd33186..e7db44034 100644
--- a/openssl/crypto/dh/dh_key.c
+++ b/openssl/crypto/dh/dh_key.c
@@ -62,8 +62,6 @@
#include <openssl/rand.h>
#include <openssl/dh.h>
-#ifndef OPENSSL_FIPS
-
static int generate_key(DH *dh);
static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
@@ -263,5 +261,3 @@ static int dh_finish(DH *dh)
BN_MONT_CTX_free(dh->method_mont_p);
return(1);
}
-
-#endif