blob: 5eaf2245dba47a16edfd1bd71aab29100f61c03a [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include "net/cert/pki/crl.h"
#include "net/der/input.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
net::der::Input idp_der(data, size);
std::unique_ptr<net::GeneralNames> distribution_point_names;
net::ContainedCertsType only_contains_cert_type;
if (net::ParseIssuingDistributionPoint(idp_der, &distribution_point_names,
&only_contains_cert_type)) {
bool has_distribution_point_names =
distribution_point_names &&
distribution_point_names->present_name_types != net::GENERAL_NAME_NONE;
if (!has_distribution_point_names &&
only_contains_cert_type == net::ContainedCertsType::ANY_CERTS) {
abort();
}
}
return 0;
}