blob: ff1c6b1c9f7e23dd6d7cceeb5a9744cc25fd02dd [file] [log] [blame] [edit]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LIBHWSEC_FUZZED_PROTOBUF_H_
#define LIBHWSEC_FUZZED_PROTOBUF_H_
#include <concepts>
#include <string>
#include <type_traits>
#include <brillo/fuzzed_proto_generator.h>
#include <brillo/secure_blob.h>
#include <fuzzer/FuzzedDataProvider.h>
#include <google/protobuf/message.h>
#include "libhwsec/fuzzed/basic_objects.h"
namespace hwsec {
// Generates fuzzed protobuf.
template <typename T>
requires(std::derived_from<T, google::protobuf::Message>)
struct FuzzedObject<T> {
T operator()(FuzzedDataProvider& provider) const {
T result;
result.ParseFromString(brillo::BlobToString(
brillo::FuzzedProtoGenerator(provider).Generate()));
return result;
}
};
} // namespace hwsec
#endif // LIBHWSEC_FUZZED_PROTOBUF_H_