Gabor Toth | af77b47 | 2024-04-05 11:19:37 +0200 | [diff] [blame] | 1 | /* |
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 | ||||
13 | extern "C" { | ||||
14 | #endif | ||||
15 | |||||
16 | const mbedtls_asn1_buf* findCommonName(const mbedtls_asn1_named_data *name); | ||||
17 | |||||
18 | #ifdef __cplusplus | ||||
19 | } | ||||
20 | #endif | ||||
21 | |||||
22 | #endif /* MBEDTLS_UTILS_H */ |