blob: 298d407a237181d2077aab6219aaa7e21fa39ddd [file] [log] [blame]
Julian Hall527ddd52021-06-28 11:57:17 +01001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef SERVICE_PROXY_FACTORY_H
8#define SERVICE_PROXY_FACTORY_H
9
10#include <rpc/common/endpoint/rpc_interface.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16struct rpc_interface *attest_proxy_create(void);
17struct rpc_interface *crypto_proxy_create(void);
18struct rpc_interface *ps_proxy_create(void);
19struct rpc_interface *its_proxy_create(void);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /* SERVICE_PROXY_FACTORY_H */