blob: 0fafd668d520398fbea63240eb052fe602fec8be [file] [log] [blame]
Julian Hall482fd2f2021-05-17 16:34:48 +01001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef TS_ATTESTATION_IMPORT_IAK_H
7#define TS_ATTESTATION_IMPORT_IAK_H
8
9/**
10 * Parameter definitions for the IMPORT_IAK operation.
11 *
12 * Used during device provisioning to load an externally
13 * generated IAK key-pair into a device. An attempt to
14 * import an IAK when an IAK already exists will be rejected.
15 */
16
17/* Variable length input parameter tags */
18enum
19{
20 /* TLV tag to identify the IAK key-pair data parameter
21 */
22 TS_ATTESTATION_IMPORT_IAK_IN_TAG_DATA = 1,
23};
24
25#endif /* TS_ATTESTATION_IMPORT_IAK_H */