LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
GenericType.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2026 R. Thomas
2 * Copyright 2017 - 2026 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_PE_ATTRIBUTES_GENERIC_TYPE_H
17#define LIEF_PE_ATTRIBUTES_GENERIC_TYPE_H
18#include <memory>
19#include <vector>
20
21#include "LIEF/visibility.h"
22#include "LIEF/span.hpp"
25
26namespace LIEF {
27class VectorStream;
28namespace PE {
29
33 friend class Parser;
34 friend class SignatureParser;
35
36 public:
38 Attribute(Attribute::TYPE::GENERIC_TYPE) {}
39 GenericType(oid_t oid, std::vector<uint8_t> raw) :
40 Attribute(Attribute::TYPE::GENERIC_TYPE),
41 oid_{std::move(oid)},
42 raw_{std::move(raw)} {}
43 GenericType(const GenericType&) = default;
44 GenericType& operator=(const GenericType&) = default;
45
46 std::unique_ptr<Attribute> clone() const override {
47 return std::unique_ptr<Attribute>(new GenericType{*this});
48 }
49
51 const oid_t& oid() const {
52 return oid_;
53 }
54
57 return raw_;
58 }
59
61 std::string print() const override;
62
63 void accept(Visitor& visitor) const override;
64
65 ~GenericType() override = default;
66
67 static bool classof(const Attribute* attr) {
68 return attr->type() == Attribute::TYPE::GENERIC_TYPE;
69 }
70
71 private:
72 oid_t oid_;
73 std::vector<uint8_t> raw_;
74};
75
76}
77}
78
79#endif
TYPE
Definition PE/signature/Attribute.hpp:35
@ GENERIC_TYPE
Definition PE/signature/Attribute.hpp:38
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:62
GenericType & operator=(const GenericType &)=default
std::unique_ptr< Attribute > clone() const override
Definition GenericType.hpp:46
~GenericType() override=default
void accept(Visitor &visitor) const override
GenericType()
Definition GenericType.hpp:37
span< const uint8_t > raw_content() const
Original DER blob of the attribute.
Definition GenericType.hpp:56
GenericType(const GenericType &)=default
GenericType(oid_t oid, std::vector< uint8_t > raw)
Definition GenericType.hpp:39
const oid_t & oid() const
OID of the original attribute.
Definition GenericType.hpp:51
friend class SignatureParser
Definition GenericType.hpp:34
std::string print() const override
Print information about the attribute.
friend class Parser
Definition GenericType.hpp:33
static bool classof(const Attribute *attr)
Definition GenericType.hpp:67
Definition VectorStream.hpp:29
Definition Visitor.hpp:212
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
std::string oid_t
Definition PE/signature/types.hpp:23
LIEF namespace.
Definition Abstract/Binary.hpp:40
tcb::span< ElementType, Extent > span
Definition span.hpp:22
#define LIEF_API
Definition visibility.h:43