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