mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-02 00:20:05 +00:00

Add support for multiple Cryptocell revisions which use different APIs. This commit only refactors the existing code in preperation to the addition of another Cryptocell revisions later on. Signed-off-by: Gilad Ben-Yossef <gilad.benyossef@arm.com> Change-Id: I16d80b31afb6edd56dc645fee5ea619cc74f09b6
34 lines
649 B
C
34 lines
649 B
C
/*
|
|
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef _CC_SEC_DEFS_H
|
|
#define _CC_SEC_DEFS_H
|
|
|
|
/*!
|
|
@file
|
|
@brief This file contains general hash definitions and types.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/*! The hashblock size in words. */
|
|
#define HASH_BLOCK_SIZE_IN_WORDS 16
|
|
/*! The hash - SHA2 results in words. */
|
|
#define HASH_RESULT_SIZE_IN_WORDS 8
|
|
#define HASH_RESULT_SIZE_IN_BYTES 32
|
|
|
|
/*! Definition for hash result array. */
|
|
typedef uint32_t CCHashResult_t[HASH_RESULT_SIZE_IN_WORDS];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|