2021-05-19 17:54:54 +02:00
|
|
|
#define MBEDTLS_ALLOW_PRIVATE_ACCESS
|
|
|
|
|
2018-05-03 16:40:24 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "mbedtls/x509_crt.h"
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
|
|
|
|
{
|
2018-05-03 16:40:24 +02:00
|
|
|
#ifdef MBEDTLS_X509_CRT_PARSE_C
|
|
|
|
int ret;
|
|
|
|
mbedtls_x509_crt crt;
|
|
|
|
unsigned char buf[4096];
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_x509_crt_init(&crt);
|
|
|
|
ret = mbedtls_x509_crt_parse(&crt, Data, Size);
|
2020-10-09 10:45:29 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2018-05-03 16:40:24 +02:00
|
|
|
if (ret == 0) {
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_x509_crt_info((char *) buf, sizeof(buf) - 1, " ", &crt);
|
2018-05-03 16:40:24 +02:00
|
|
|
}
|
2020-10-09 10:45:29 +02:00
|
|
|
#else
|
|
|
|
((void) ret);
|
2020-10-16 07:54:39 +02:00
|
|
|
((void) buf);
|
2020-10-09 10:45:29 +02:00
|
|
|
#endif /* !MBEDTLS_X509_REMOVE_INFO */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_x509_crt_free(&crt);
|
2018-05-03 16:40:24 +02:00
|
|
|
#else
|
|
|
|
(void) Data;
|
|
|
|
(void) Size;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|