aboutsummaryrefslogtreecommitdiff
path: root/include/libecc/libec.h
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2024-12-17 04:18:42 +0000
committerKyle Evans <kevans@FreeBSD.org>2024-12-17 04:18:42 +0000
commit736d663976d1768533badbf06581481d01fade4c (patch)
tree8760aa186b4bc2953f0e546da6f408b4f5974dc3 /include/libecc/libec.h
libecc will be used privately for upcoming ECC support in pkg(7). Other crypto consumers should continue using openssl.
Diffstat (limited to 'include/libecc/libec.h')
-rw-r--r--include/libecc/libec.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/libecc/libec.h b/include/libecc/libec.h
new file mode 100644
index 000000000000..5ebc3997ee93
--- /dev/null
+++ b/include/libecc/libec.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2017 - This file is part of libecc project
+ *
+ * Authors:
+ * Ryad BENADJILA <ryadbenadjila@gmail.com>
+ * Arnaud EBALARD <arnaud.ebalard@ssi.gouv.fr>
+ * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr>
+ *
+ * Contributors:
+ * Nicolas VIVET <nicolas.vivet@ssi.gouv.fr>
+ * Karim KHALFALLAH <karim.khalfallah@ssi.gouv.fr>
+ *
+ * This software is licensed under a dual BSD and GPL v2 license.
+ * See LICENSE file at the root folder of the project.
+ */
+#ifndef __LIBEC_H__
+#define __LIBEC_H__
+
+/* Include the libarith package */
+#include <libecc/libarith.h>
+/* Curve layer includes */
+#include <libecc/curves/curves.h>
+#include <libecc/curves/curves_list.h>
+#include <libecc/curves/ec_shortw.h>
+#include <libecc/curves/prj_pt.h>
+#include <libecc/curves/aff_pt.h>
+
+#include <libecc/utils/print_curves.h>
+
+#endif /* __LIBEC_H__ */