aboutsummaryrefslogtreecommitdiff
path: root/include/common/uuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/common/uuid.h')
-rw-r--r--include/common/uuid.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/common/uuid.h b/include/common/uuid.h
new file mode 100644
index 000000000..5651d0d58
--- /dev/null
+++ b/include/common/uuid.h
@@ -0,0 +1,15 @@
+/*
+ * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef UUID_H
+#define UUID_H
+
+#define UUID_BYTES_LENGTH 16
+#define UUID_STRING_LENGTH 36
+
+int read_uuid(uint8_t *dest, char *uuid);
+
+#endif /* UUID_H */