blob: 0e2f39620bd86238f082db32f3efbb5418d1ab91 [file] [log] [blame]
Gabor Tothaf77b472024-04-05 11:19:37 +02001/*
2 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef MBEDTLS_UTILS_H
8#define MBEDTLS_UTILS_H
9
10#include <mbedtls/asn1.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16const mbedtls_asn1_buf* findCommonName(const mbedtls_asn1_named_data *name);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif /* MBEDTLS_UTILS_H */