mirror of
https://github.com/opnsense/src.git
synced 2026-03-11 02:31:16 -04:00
git-subtree-dir: crypto/libecc git-subtree-mainline: f59bb61e1eb4d1e4fc3c60cc14779d0668267cb2 git-subtree-split: 736d663976d1768533badbf06581481d01fade4c (cherry picked from commit f0865ec9906d5a18fa2a3b61381f22ce16e606ad)
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/*
|
|
* 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 __LIBARITH_H__
|
|
#define __LIBARITH_H__
|
|
|
|
/* NN layer includes */
|
|
#include <libecc/nn/nn.h>
|
|
#include <libecc/nn/nn_logical.h>
|
|
#include <libecc/nn/nn_add.h>
|
|
#include <libecc/nn/nn_mul_public.h>
|
|
#include <libecc/nn/nn_mul_redc1.h>
|
|
#include <libecc/nn/nn_div_public.h>
|
|
#include <libecc/nn/nn_modinv.h>
|
|
#include <libecc/nn/nn_mod_pow.h>
|
|
#include <libecc/nn/nn_rand.h>
|
|
#include <libecc/utils/print_nn.h>
|
|
|
|
/* Fp layer include */
|
|
#include <libecc/fp/fp.h>
|
|
#include <libecc/fp/fp_add.h>
|
|
#include <libecc/fp/fp_montgomery.h>
|
|
#include <libecc/fp/fp_mul.h>
|
|
#include <libecc/fp/fp_sqrt.h>
|
|
#include <libecc/fp/fp_pow.h>
|
|
#include <libecc/fp/fp_rand.h>
|
|
#include <libecc/utils/print_fp.h>
|
|
|
|
#endif /* __LIBARITH_H__ */
|