Cleanups in ECDH code.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 3 Jul 2011 20:13:34 +0000 (22:13 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 3 Jul 2011 20:13:34 +0000 (22:13 +0200)
src/openssl/ecdh.c

index 7640674..8432420 100644 (file)
 #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;