summaryrefslogtreecommitdiff
path: root/app/openssl/crypto/ecdh/ech_ossl.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/openssl/crypto/ecdh/ech_ossl.c')
-rw-r--r--app/openssl/crypto/ecdh/ech_ossl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/openssl/crypto/ecdh/ech_ossl.c b/app/openssl/crypto/ecdh/ech_ossl.c
index 2a40ff12..4a30628f 100644
--- a/app/openssl/crypto/ecdh/ech_ossl.c
+++ b/app/openssl/crypto/ecdh/ech_ossl.c
@@ -157,6 +157,7 @@ static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
goto err;
}
}
+#ifndef OPENSSL_NO_EC2M
else
{
if (!EC_POINT_get_affine_coordinates_GF2m(group, tmp, x, y, ctx))
@@ -165,6 +166,7 @@ static int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
goto err;
}
}
+#endif
buflen = (EC_GROUP_get_degree(group) + 7)/8;
len = BN_num_bytes(x);