blob: 7f8813a0ad01d9689f602c057a3a666decf50ab4 [file] [log] [blame]
julhal01734dbad2020-12-21 10:27:41 +00001/*
2 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef TS_CRYPTO_EXPORT_KEY_H
7#define TS_CRYPTO_EXPORT_KEY_H
8
9#include <stdint.h>
10
11/* Mandatory fixed sized input parameters */
12struct __attribute__ ((__packed__)) ts_crypto_export_key_in
13{
Balint Dobszay3c52ce62021-05-10 16:27:18 +020014 uint32_t id;
julhal01734dbad2020-12-21 10:27:41 +000015};
16
17/* Variable length output parameter tags */
18enum
19{
20 TS_CRYPTO_EXPORT_KEY_OUT_TAG_DATA = 1
21};
22
23#endif /* TS_CRYPTO_EXPORT_KEY_H */