5 ecdsa.h -- ECDSA key handling
6 Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #ifndef TINC_ECDSA_INTERNAL
26 typedef struct ecdsa ecdsa_t;
29 extern ecdsa_t *ecdsa_set_base64_public_key(const char *p) __attribute__((__malloc__));
30 extern char *ecdsa_get_base64_public_key(ecdsa_t *ecdsa);
31 extern ecdsa_t *ecdsa_read_pem_public_key(FILE *fp) __attribute__((__malloc__));
32 extern ecdsa_t *ecdsa_read_pem_private_key(FILE *fp) __attribute__((__malloc__));
33 extern size_t ecdsa_size(ecdsa_t *ecdsa);
34 extern bool ecdsa_sign(ecdsa_t *ecdsa, const void *in, size_t inlen, void *out) __attribute__((__warn_unused_result__));
35 extern bool ecdsa_verify(ecdsa_t *ecdsa, const void *in, size_t inlen, const void *out) __attribute__((__warn_unused_result__));
36 extern bool ecdsa_active(ecdsa_t *ecdsa);
37 extern void ecdsa_free(ecdsa_t *ecdsa);