/* * Copyright (C) 2021 - This file is part of libecc project * * Authors: * Ryad BENADJILA * Arnaud EBALARD * * This software is licensed under a dual BSD and GPL v2 license. * See LICENSE file at the root folder of the project. */ #ifndef __SSS_PRIVATE_H__ #define __SSS_PRIVATE_H__ /* NOTE: this is a header that is private to SSS * and should not be included elsewhare to avoid exposing * unnecessary APIs and symbols when only using SSS. */ /* NOTE: we need the arithmetic library for SSS as all * operations will take place in Fp with p a public known * prime number. */ #include #include /* We use HMAC */ #include /* We generate random */ #include #endif /* __SSS_PRIVATE_H__ */