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  @addtogroup cc_hash_defs_proj
9  @{
10  */
11 
12 
13 /*!
14  @file
15  @brief This file contains the project-specific definitions of hash APIs.
16  */
17 
18 #ifndef _CC_HASH_DEFS_PROJ_H
19 #define _CC_HASH_DEFS_PROJ_H
20 
21 #ifdef __cplusplus
22 extern "C"
23 {
24 #endif
25 
26 
27 /************************ Defines ******************************/
28 
29 /*! The size of the context prototype of the user in words.
30 See ::CCHashUserContext_t. */
31 #define CC_HASH_USER_CTX_SIZE_IN_WORDS 60
32 
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 /*!
39  @}
40  */
41 #endif
42