1 /*
2  * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef SE_PROXY_INTERFACES_H
8 #define SE_PROXY_INTERFACES_H
9 
10 /* Interface IDs from service endpoints available from an se-proxy deployment */
11 #define SE_PROXY_INTERFACE_ID_ITS			(0)
12 #define SE_PROXY_INTERFACE_ID_PS			(1)
13 #define SE_PROXY_INTERFACE_ID_CRYPTO		(2)
14 #define SE_PROXY_INTERFACE_ID_ATTEST		(3)
15 
16 #endif /* SE_PROXY_INTERFACES_H */
17