From c385d115331845e8a844322e66571d74d833e822 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 3 Jul 2011 22:13:34 +0200 Subject: [PATCH] Cleanups in ECDH code. --- src/openssl/ecdh.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/openssl/ecdh.c b/src/openssl/ecdh.c index 76406749..84324209 100644 --- a/src/openssl/ecdh.c +++ b/src/openssl/ecdh.c @@ -28,13 +28,6 @@ #include "ecdh.h" #include "logger.h" -// TODO: proper KDF -static void *kdf(const void *in, size_t inlen, void *out, size_t *outlen) { - memcpy(out, in, inlen); - *outlen = inlen; - return out; -} - bool ecdh_generate_public(ecdh_t *ecdh, void *pubkey) { *ecdh = EC_KEY_new_by_curve_name(NID_secp521r1); if(!EC_KEY_generate_key(*ecdh)) { @@ -59,14 +52,18 @@ bool ecdh_generate_public(ecdh_t *ecdh, void *pubkey) { bool ecdh_compute_shared(ecdh_t *ecdh, const void *pubkey, void *shared) { EC_POINT *point = EC_POINT_new(EC_KEY_get0_group(*ecdh)); + if(!point) { + logger(LOG_ERR, "EC_POINT_new() failed: %s", ERR_error_string(ERR_get_error(), NULL)); + abort(); + } int result = EC_POINT_oct2point(EC_KEY_get0_group(*ecdh), point, pubkey, ECDH_SIZE, NULL); - if(!point) { + if(!result) { logger(LOG_ERR, "Converting binary to EC_POINT failed: %s", ERR_error_string(ERR_get_error(), NULL)); abort(); } - result = ECDH_compute_key(shared, ECDH_SIZE, point, *ecdh, kdf); + result = ECDH_compute_key(shared, ECDH_SIZE, point, *ecdh, NULL); EC_POINT_free(point); EC_KEY_free(*ecdh); *ecdh = NULL; -- 2.20.1