summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libcrypto/ecdh/ecdh_kdf.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/libcrypto/ecdh/ecdh_kdf.c b/lib/libcrypto/ecdh/ecdh_kdf.c
index d686f9d897d..00af7d4abe2 100644
--- a/lib/libcrypto/ecdh/ecdh_kdf.c
+++ b/lib/libcrypto/ecdh/ecdh_kdf.c
@@ -67,15 +67,3 @@ int ecdh_KDF_X9_63(unsigned char *out, size_t outlen,
EVP_MD_CTX_free(mctx);
return rv;
}
-
-/*-
- * The old name for ecdh_KDF_X9_63
- * Retained for ABI compatibility
- */
-int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,
- const unsigned char *Z, size_t Zlen,
- const unsigned char *sinfo, size_t sinfolen,
- const EVP_MD *md)
-{
- return ecdh_KDF_X9_63(out, outlen, Z, Zlen, sinfo, sinfolen, md);
-}