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_crl.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_CRL_PARSE_C
|
|
|
|
int ret;
|
|
|
|
mbedtls_x509_crl crl;
|
|
|
|
unsigned char buf[4096];
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_x509_crl_init(&crl);
|
|
|
|
ret = mbedtls_x509_crl_parse(&crl, 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_crl_info((char *) buf, sizeof(buf) - 1, " ", &crl);
|
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_crl_free(&crl);
|
2018-05-03 16:40:24 +02:00
|
|
|
#else
|
|
|
|
(void) Data;
|
|
|
|
(void) Size;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|