blob: caa8b2481d7bab1db337eb2416143efb81048341 [file] [log] [blame]
Etienne Carriere75141172020-05-16 11:58:23 +02001/* SPDX-License-Identifier: BSD-2-Clause */
Pascal Brandc639ac82015-07-02 08:53:34 +02002/*
3 * Copyright (c) 2014, STMicroelectronics International N.V.
4 * All rights reserved.
Pascal Brandc639ac82015-07-02 08:53:34 +02005 */
6
7#ifndef SHA2_TAF_H
8#define SHA2_TAF_H
9
10#include <tee_api.h>
11
12/* params[0] is input buffer and params[1] is output buffer */
13TEE_Result ta_entry_sha224(uint32_t param_types, TEE_Param params[4]);
14
15/* params[0] is input buffer and params[1] is output buffer */
16TEE_Result ta_entry_sha256(uint32_t param_types, TEE_Param params[4]);
17
18#endif