blob: e02ed1ed3eb2143759d7c4802c3739f76810ac54 [file] [log] [blame]
Julian Hall201ce462021-04-29 11:05:34 +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_GET_TOKEN_H
7#define TS_ATTESTATION_GET_TOKEN_H
8
9/* Variable length input parameter tags */
10enum
11{
12 /* TLV tag to identify the auth_challenge
13 * input parameter.
14 */
15 TS_ATTESTATION_GET_TOKEN_IN_TAG_AUTH_CHALLENGE = 1,
16};
17
18/* Variable length output parameter tags */
19enum
20{
21 /* TLV tag to identify the signed token
22 * output parameter.
23 */
24 TS_ATTESTATION_GET_TOKEN_OUT_TAG_TOKEN = 1
25};
26
27#endif /* TS_ATTESTATION_GET_TOKEN_H */