1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2014, Linaro Limited
4  */
5 
6 #ifndef TEE_CRYP_CONCAT_KDF_H
7 #define TEE_CRYP_CONCAT_KDF_H
8 
9 #include <tee_api_types.h>
10 
11 TEE_Result tee_cryp_concat_kdf(uint32_t hash_id, const uint8_t *shared_secret,
12 			       size_t shared_secret_len,
13 			       const uint8_t *other_info,
14 			       size_t other_info_len, uint8_t *derived_key,
15 			       size_t derived_key_len);
16 
17 #endif /* TEE_CRYP_CONCAT_KDF_H */
18