1 /*
2  * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef CC_ECPKI_DOMAIN_SECP256R1_H
8 #define CC_ECPKI_DOMAIN_SECP256R1_H
9 
10 /*
11  * All the includes that are needed for code using this module to
12  * compile correctly should be #included here.
13  */
14 #include "cc_pal_types.h"
15 #include "cc_ecpki_types.h"
16 
17 #ifdef __cplusplus
18 extern "C"
19 {
20 #endif
21 
22 /**
23  @brief    the function returns the domain pointer
24  @return   return domain pointer
25 
26 */
27 const CCEcpkiDomain_t *CC_EcpkiGetSecp256r1DomainP(void);
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif
34 
35