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 CC_ECPKI_DOMAIN_SECP384R1_H
9 #define CC_ECPKI_DOMAIN_SECP384R1_H
10 
11 /*
12  * All the includes that are needed for code using this module to
13  * compile correctly should be #included here.
14  */
15 #include "cc_pal_types.h"
16 #include "cc_ecpki_types.h"
17 
18 #ifdef __cplusplus
19 extern "C"
20 {
21 #endif
22 
23 /**
24  @brief    the function returns the domain pointer
25  @return   return domain pointer
26 
27 */
28 const CCEcpkiDomain_t *CC_EcpkiGetSecp384r1DomainP(void);
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif
35 
36