2 ecdsa.c -- ECDSA key handling
3 Copyright (C) 2011-2012 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
22 #include <openssl/pem.h>
23 #include <openssl/err.h>
29 // Get and set ECDSA keys
31 bool ecdsa_set_base64_public_key(ecdsa_t *ecdsa, const char *p) {
32 *ecdsa = EC_KEY_new_by_curve_name(NID_secp521r1);
34 logger(DEBUG_ALWAYS, LOG_DEBUG, "EC_KEY_new_by_curve_name failed: %s", ERR_error_string(ERR_get_error(), NULL));
39 unsigned char pubkey[len / 4 * 3 + 3];
40 const unsigned char *ppubkey = pubkey;
41 len = b64decode(p, (char *)pubkey, len);
43 if(!o2i_ECPublicKey(ecdsa, &ppubkey, len)) {
44 logger(DEBUG_ALWAYS, LOG_DEBUG, "o2i_ECPublicKey failed: %s", ERR_error_string(ERR_get_error(), NULL));
51 char *ecdsa_get_base64_public_key(ecdsa_t *ecdsa) {
52 unsigned char *pubkey = NULL;
53 int len = i2o_ECPublicKey(*ecdsa, &pubkey);
55 char *base64 = malloc(len * 4 / 3 + 5);
56 b64encode((char *)pubkey, base64, len);
63 // Read PEM ECDSA keys
65 bool ecdsa_read_pem_public_key(ecdsa_t *ecdsa, FILE *fp) {
66 *ecdsa = PEM_read_EC_PUBKEY(fp, ecdsa, NULL, NULL);
71 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read ECDSA public key: %s", ERR_error_string(ERR_get_error(), NULL));
75 bool ecdsa_read_pem_private_key(ecdsa_t *ecdsa, FILE *fp) {
76 *ecdsa = PEM_read_ECPrivateKey(fp, NULL, NULL, NULL);
81 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read ECDSA private key: %s", ERR_error_string(ERR_get_error(), NULL));
85 size_t ecdsa_size(ecdsa_t *ecdsa) {
86 return ECDSA_size(*ecdsa);
89 // TODO: standardise output format?
91 bool ecdsa_sign(ecdsa_t *ecdsa, const void *in, size_t len, void *sig) {
92 unsigned int siglen = ECDSA_size(*ecdsa);
94 unsigned char hash[SHA512_DIGEST_LENGTH];
95 SHA512(in, len, hash);
97 memset(sig, 0, siglen);
99 if(!ECDSA_sign(0, hash, sizeof hash, sig, &siglen, *ecdsa)) {
100 logger(DEBUG_ALWAYS, LOG_DEBUG, "ECDSA_sign() failed: %s", ERR_error_string(ERR_get_error(), NULL));
107 bool ecdsa_verify(ecdsa_t *ecdsa, const void *in, size_t len, const void *sig) {
108 unsigned int siglen = ECDSA_size(*ecdsa);
110 unsigned char hash[SHA512_DIGEST_LENGTH];
111 SHA512(in, len, hash);
113 if(!ECDSA_verify(0, hash, sizeof hash, sig, siglen, *ecdsa)) {
114 logger(DEBUG_ALWAYS, LOG_DEBUG, "ECDSA_verify() failed: %s", ERR_error_string(ERR_get_error(), NULL));
121 bool ecdsa_active(ecdsa_t *ecdsa) {
125 void ecdsa_free(ecdsa_t *ecdsa) {