1 /* 2 * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 8 #ifndef _PKI_MODULAR_ARITHMETIC_H 9 #define _PKI_MODULAR_ARITHMETIC_H 10 11 #include "cc_pal_types.h" 12 13 #ifdef __cplusplus 14 extern "C" 15 { 16 #endif 17 18 19 20 int32_t PkiCalcJacobiSymbol(void); 21 bool PkiCalcModSquareRoot(void); 22 23 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif 30