Go to the documentation of this file.
16#ifndef LIEF_PE_REPRO_H
17#define LIEF_PE_REPRO_H
43 Debug{Debug::TYPES::REPRO}
46 Repro(std::vector<uint8_t> hash) :
47 Debug{Debug::TYPES::REPRO},
48 hash_{std::move(
hash)}
51 Repro(
const details::pe_debug& dbg, std::vector<uint8_t> hash) :
53 hash_{std::move(
hash)}
56 Repro(
const Repro& other) =
default;
58 span<const uint8_t>
hash()
const {
68 void hash(std::vector<uint8_t> h) {
72 std::unique_ptr<Debug>
clone()
const override {
73 return std::unique_ptr<Debug>(
new Repro(*
this));
77 return debug->type() == Debug::TYPES::REPRO;
80 void accept(Visitor& visitor)
const override;
87 std::vector<uint8_t> hash_;
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
This class represents a generic entry in the debug data directory. For known types,...
Definition debug/Debug.hpp:38
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
This class represents a reproducible build entry from the debug directory. (IMAGE_DEBUG_TYPE_REPRO)....
Definition Repro.hpp:36
span< uint8_t > hash()
Definition Repro.hpp:64
friend std::ostream & operator<<(std::ostream &os, const Repro &entry)
Repro(const details::pe_debug &dbg, std::vector< uint8_t > hash)
Definition Repro.hpp:51
void hash(std::vector< uint8_t > h)
Definition Repro.hpp:68
void accept(Visitor &visitor) const override
Repro(std::vector< uint8_t > hash)
Definition Repro.hpp:46
static bool classof(const Debug *debug)
Definition Repro.hpp:76
~Repro() override=default
Repro(const Repro &other)=default
span< const uint8_t > hash() const
The hash associated with the reproducible build.
Definition Repro.hpp:60
Repro()
Definition Repro.hpp:42
Repro & operator=(const Repro &other)=default
std::unique_ptr< Debug > clone() const override
Definition Repro.hpp:72
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
LIEF namespace.
Definition Abstract/Binary.hpp:36
Hash::value_type hash(const Object &v)
#define LIEF_API
Definition visibility.h:41