1 /*
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 */
18 enum
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 */
26