X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fecdsa.h;h=64b329fed33c22396a3ef756cb7b63757753c3a6;hb=8d4b96efb7955eaa96174af4804597f92e124041;hp=9d7c34d866ba048b71b0896764bc8843a499ef48;hpb=a86faaf34711d6b0f278b670d70a229a3cf0d479;p=meshlink diff --git a/src/ecdsa.h b/src/ecdsa.h index 9d7c34d8..64b329fe 100644 --- a/src/ecdsa.h +++ b/src/ecdsa.h @@ -1,6 +1,9 @@ +#ifndef MESHLINK_ECDSA_H +#define MESHLINK_ECDSA_H + /* ecdsa.h -- ECDSA key handling - Copyright (C) 2011-2013 Guus Sliepen + Copyright (C) 2014, 2017 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,21 +20,22 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __TINC_ECDSA_H__ -#define __TINC_ECDSA_H__ - -#ifndef __TINC_ECDSA_INTERNAL__ +#ifndef __MESHLINK_ECDSA_INTERNAL__ typedef struct ecdsa ecdsa_t; #endif -extern ecdsa_t *ecdsa_set_base64_public_key(const char *p) __attribute__ ((__malloc__)); -extern char *ecdsa_get_base64_public_key(ecdsa_t *ecdsa); -extern ecdsa_t *ecdsa_read_pem_public_key(FILE *fp) __attribute__ ((__malloc__)); -extern ecdsa_t *ecdsa_read_pem_private_key(FILE *fp) __attribute__ ((__malloc__)); -extern size_t ecdsa_size(ecdsa_t *ecdsa); -extern bool ecdsa_sign(ecdsa_t *ecdsa, const void *in, size_t inlen, void *out) __attribute__ ((__warn_unused_result__)); -extern bool ecdsa_verify(ecdsa_t *ecdsa, const void *in, size_t inlen, const void *out) __attribute__ ((__warn_unused_result__)); -extern bool ecdsa_active(ecdsa_t *ecdsa); -extern void ecdsa_free(ecdsa_t *ecdsa); +ecdsa_t *ecdsa_set_private_key(const void *p) __attribute__((__malloc__)); +ecdsa_t *ecdsa_set_base64_public_key(const char *p) __attribute__((__malloc__)); +ecdsa_t *ecdsa_set_public_key(const void *p) __attribute__((__malloc__)); +char *ecdsa_get_base64_public_key(ecdsa_t *ecdsa); +const void *ecdsa_get_public_key(ecdsa_t *ecdsa) __attribute__((__malloc__)); +const void *ecdsa_get_private_key(ecdsa_t *ecdsa) __attribute__((__malloc__)); +ecdsa_t *ecdsa_read_pem_public_key(FILE *fp) __attribute__((__malloc__)); +ecdsa_t *ecdsa_read_pem_private_key(FILE *fp) __attribute__((__malloc__)); +size_t ecdsa_size(ecdsa_t *ecdsa); +bool ecdsa_sign(ecdsa_t *ecdsa, const void *in, size_t inlen, void *out) __attribute__((__warn_unused_result__)); +bool ecdsa_verify(ecdsa_t *ecdsa, const void *in, size_t inlen, const void *out) __attribute__((__warn_unused_result__)); +bool ecdsa_active(ecdsa_t *ecdsa); +void ecdsa_free(ecdsa_t *ecdsa); #endif