aboutsummaryrefslogtreecommitdiff
path: root/include/drivers/arm/cryptocell/crypto_driver.h
blob: 18104dd7d43b7a41b654926079de922857ff50f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef _CRYPTO_DRIVER_H
#define _CRYPTO_DRIVER_H

#ifdef __cplusplus
extern "C"
{
#endif

#include "cc_pal_sb_plat.h"
#include "cc_sec_defs.h"

/*----------------------------
      PUBLIC FUNCTIONS
-----------------------------------*/
/*!
 * @brief This function gives the functionality of integrated hash
 *
 * @param[in] hwBaseAddress	- CryptoCell base address
 * @param[out] hashResult	- the HASH result.
 *
 */
CCError_t SBROM_CryptoHash(unsigned long hwBaseAddress, CCDmaAddr_t inputDataAddr, uint32_t BlockSize,
				CCHashResult_t hashResult);

#ifdef __cplusplus
}
#endif

#endif