diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-05 16:05:37 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-09-05 16:05:37 +0000 |
commit | 6b1fdb5489845ab67e6e712ef2012a0872a78be7 (patch) | |
tree | ba40ae757511838a697907e8fa7d6ef8f7ad76c2 /lib | |
parent | 23355bb2d9b8b1e6dc858a27fcd08fae97d032df (diff) |
Remove ECDH_KDF_X9_62 wrapper.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/ecdh/ecdh_kdf.c | 12 |
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); -} |