blob: 3cc0a3ca12d3d7efbbdef41e87f3837cbd1c623f [file] [log] [blame]
/*
* Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef TS_CRYPTO_EXPORT_KEY_H
#define TS_CRYPTO_EXPORT_KEY_H
#include <stdint.h>
/* Mandatory fixed sized input parameters */
struct __attribute__ ((__packed__)) ts_crypto_export_key_in
{
uint32_t handle;
};
/* Variable length output parameter tags */
enum
{
TS_CRYPTO_EXPORT_KEY_OUT_TAG_DATA = 1
};
#endif /* TS_CRYPTO_EXPORT_KEY_H */