Add the brainpoolp512r1 curve and use it.
[tinc] / src / openssl / ecdh.c
1 /*
2     ecdh.c -- Diffie-Hellman key exchange handling
3     Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "../system.h"
21
22 #include <openssl/err.h>
23 #include <openssl/ec.h>
24 #include <openssl/ecdh.h>
25 #include <openssl/obj_mac.h>
26
27 #define __TINC_ECDH_INTERNAL__
28 typedef EC_KEY ecdh_t;
29
30 #include "../ecdh.h"
31 #include "../logger.h"
32 #include "../utils.h"
33 #include "../xalloc.h"
34
35 #include "brainpool.h"
36
37 ecdh_t *ecdh_generate_public(void *pubkey) {
38         ecdh_t *ecdh = EC_KEY_new();
39         if(!ecdh) {
40                 logger(DEBUG_ALWAYS, LOG_ERR, "Allocating EC key failed: %s", ERR_error_string(ERR_get_error(), NULL));
41                 return false;
42         }
43
44         if(!EC_KEY_set_group(ecdh, brainpoolp512r1) || !EC_KEY_generate_key(ecdh)) {
45                 EC_KEY_free(ecdh);
46                 logger(DEBUG_ALWAYS, LOG_ERR, "Generating EC key failed: %s", ERR_error_string(ERR_get_error(), NULL));
47                 return NULL;
48         }
49
50         const EC_POINT *point = EC_KEY_get0_public_key(ecdh);
51         if(!point) {
52                 EC_KEY_free(ecdh);
53                 logger(DEBUG_ALWAYS, LOG_ERR, "Getting public key failed: %s", ERR_error_string(ERR_get_error(), NULL));
54                 return NULL;
55         }
56
57         size_t result = EC_POINT_point2oct(EC_KEY_get0_group(ecdh), point, POINT_CONVERSION_COMPRESSED, pubkey, ECDH_SIZE, NULL);
58         if(!result) {
59                 EC_KEY_free(ecdh);
60                 logger(DEBUG_ALWAYS, LOG_ERR, "Converting EC_POINT to binary failed: %s", ERR_error_string(ERR_get_error(), NULL));
61                 return NULL;
62         }
63
64         return ecdh;
65 }
66
67 bool ecdh_compute_shared(ecdh_t *ecdh, const void *pubkey, void *shared) {
68         EC_POINT *point = EC_POINT_new(EC_KEY_get0_group(ecdh));
69         if(!point) {
70                 logger(DEBUG_ALWAYS, LOG_ERR, "EC_POINT_new() failed: %s", ERR_error_string(ERR_get_error(), NULL));
71                 EC_KEY_free(ecdh);
72                 return false;
73         }
74
75         int result = EC_POINT_oct2point(EC_KEY_get0_group(ecdh), point, pubkey, ECDH_SIZE, NULL);
76         if(!result) {
77                 EC_POINT_free(point);
78                 EC_KEY_free(ecdh);
79                 logger(DEBUG_ALWAYS, LOG_ERR, "Converting binary to EC_POINT failed: %s", ERR_error_string(ERR_get_error(), NULL));
80                 return false;
81         }
82
83         result = ECDH_compute_key(shared, ECDH_SIZE, point, ecdh, NULL);
84         EC_POINT_free(point);
85         EC_KEY_free(ecdh);
86
87         if(!result) {
88                 logger(DEBUG_ALWAYS, LOG_ERR, "Computing Elliptic Curve Diffie-Hellman shared key failed: %s", ERR_error_string(ERR_get_error(), NULL));
89                 return false;
90         }
91
92         return true;
93 }
94
95 void ecdh_free(ecdh_t *ecdh) {
96         if(ecdh)
97                 EC_KEY_free(ecdh);
98 }