blob: df8e88487cef4ec4d1e9a27aea806cf9d27ecb3a [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 "net/cert/pki/ocsp.h"
#include "net/der/input.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
net::der::Input response_der(data, size);
net::OCSPResponse response;
net::ParseOCSPResponse(response_der, &response);
return 0;
}