mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2024-11-11 05:58:52 +01:00
42 lines
616 B
C
42 lines
616 B
C
/*
|
|
* Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*!
|
|
@addtogroup cc_hash_defs_proj
|
|
@{
|
|
*/
|
|
|
|
|
|
/*!
|
|
@file
|
|
@brief This file contains the project-specific definitions of hash APIs.
|
|
*/
|
|
|
|
#ifndef _CC_HASH_DEFS_PROJ_H
|
|
#define _CC_HASH_DEFS_PROJ_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
/************************ Defines ******************************/
|
|
|
|
/*! The size of the context prototype of the user in words.
|
|
See ::CCHashUserContext_t. */
|
|
#define CC_HASH_USER_CTX_SIZE_IN_WORDS 108
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/*!
|
|
@}
|
|
*/
|
|
#endif
|