summaryrefslogtreecommitdiff
path: root/core/include/tee/se/aid.h
blob: a1933b642c7248c3fabd68f232713494f7bf053d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2014, Linaro Limited
 * All rights reserved.
 */
#ifndef TEE_SE_AID
#define TEE_SE_AID

#define MAX_AID_LENGTH	16
#define MIN_AID_LENGTH	5

struct tee_se_aid;

TEE_Result tee_se_aid_create_from_buffer(uint8_t *id, size_t length,
		struct tee_se_aid **aid);

void tee_se_aid_release(struct tee_se_aid *aid);

#endif