1 /* 2 * Copyright (C) 2017 - This file is part of libecc project 3 * 4 * Authors: 5 * Ryad BENADJILA <ryadbenadjila@gmail.com> 6 * Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr> 7 * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr> 8 * 9 * Contributors: 10 * Nicolas VIVET <nicolas.vivet@ssi.gouv.fr> 11 * Karim KHALFALLAH <karim.khalfallah@ssi.gouv.fr> 12 * 13 * This software is licensed under a dual BSD and GPL v2 license. 14 * See LICENSE file at the root folder of the project. 15 */ 16 #ifndef __LIBSIG_H__ 17 #define __LIBSIG_H__ 18 19 /* Include the Elliptic Curves layer */ 20 #include <libecc/libec.h> 21 /* Include configuration as well as types */ 22 #include <libecc/lib_ecc_config.h> 23 #include <libecc/lib_ecc_types.h> 24 /* Include the signature algorithms and their 25 * keys primitives 26 */ 27 #include <libecc/sig/sig_algs.h> 28 #include <libecc/sig/ec_key.h> 29 #include <libecc/utils/dbg_sig.h> /* debug */ 30 /* Include the hash functions */ 31 #include <libecc/hash/hash_algs.h> 32 /* Include the hmac functions */ 33 #include <libecc/hash/hmac.h> 34 /* Include the ECDH primitives */ 35 #include <libecc/ecdh/ecdh.h> 36 37 #endif /* __LIBSIG_H__ */ 38