blob: 0c6ad86a8ef7c14e2b91d491491dc17ad5bb68db [file] [log] [blame]
Tamas Banafc4f3c2024-08-13 11:46:58 +02001/*
2 * Copyright (c) 2024, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef _CMD_H_
9#define _CMD_H_
10
11enum cmd {
12 CBOR, /* CBOR encoded */
13 MAX_CMD_VAL
14};
15
16int exec_dpe_cmd(enum cmd cmd, const char *cmd_in_buf, size_t cmd_in_size, int *context_handle);
17
18void dpe_lib_init(int *context_handle);
19
20#endif /* _CMD_H_ */