summaryrefslogtreecommitdiff
path: root/include/common/uuid.h
blob: 634880449f15529dd0686cc9bed1eaace8edad29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef UUID_COMMON_H
#define UUID_COMMON_H

#include <stdbool.h>
#include <stdint.h>

#define UUID_BYTES_LENGTH	16
#define UUID_STRING_LENGTH	36

int read_uuid(uint8_t *dest, char *uuid);
bool uuid_match(uint32_t *uuid1, uint32_t *uuid2);
void copy_uuid(uint32_t *to_uuid, uint32_t *from_uuid);
bool is_null_uuid(uint32_t *uuid);

#endif /* UUID_COMMON_H */