]> git.ipfire.org Git - thirdparty/strongswan.git/blame - fuzz/fuzz_crls.c
kernel-netlink: Allow blank source address in routes for passthrough policies
[thirdparty/strongswan.git] / fuzz / fuzz_crls.c
CommitLineData
bd6e4bbe
TB
1/*
2 * Copyright (C) 2018 Tobias Brunner
3 * HSR Hochschule fuer Technik Rapperswil
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16#include <library.h>
17#include <utils/debug.h>
18
19int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
20{
21 certificate_t *cert;
22 chunk_t chunk;
23
24 dbg_default_set_level(-1);
25 library_init(NULL, "fuzz_crls");
26 plugin_loader_add_plugindirs(PLUGINDIR, PLUGINS);
27 if (!lib->plugins->load(lib->plugins, PLUGINS))
28 {
29 return 1;
30 }
31
32 chunk = chunk_create((u_char*)buf, len);
33 cert = lib->creds->create(lib->creds, CRED_CERTIFICATE, CERT_X509_CRL,
34 BUILD_BLOB, chunk, BUILD_END);
35 DESTROY_IF(cert);
36
37 lib->plugins->unload(lib->plugins);
38 library_deinit();
39 return 0;
40}