LIEF: Library to Instrument Executable Formats Version 2.0.0
Loading...
Searching...
No Matches
MsSpcNestedSignature.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_MS_SPC_NESTED_SIG_H
17#define LIEF_PE_ATTRIBUTES_MS_SPC_NESTED_SIG_H
18
21#include "LIEF/visibility.h"
22
23
24namespace LIEF::PE {
25
37
38 friend class Parser;
39 friend class SignatureParser;
40
41 public:
44 Attribute(Attribute::TYPE::MS_SPC_NESTED_SIGN),
45 sig_{std::move(sig)} {}
48
49 std::unique_ptr<Attribute> clone() const override {
50 return std::unique_ptr<Attribute>(new MsSpcNestedSignature{*this});
51 }
52
55 return sig_;
56 }
57
59 std::string print() const override;
60
61 void accept(Visitor& visitor) const override;
62
63 static bool classof(const Attribute* attr) {
65 }
66
67 ~MsSpcNestedSignature() override = default;
68
69 private:
70 Signature sig_;
71};
72
73}
74
75
76#endif
TYPE
Definition PE/signature/Attribute.hpp:35
@ MS_SPC_NESTED_SIGN
Definition PE/signature/Attribute.hpp:45
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:62
MsSpcNestedSignature & operator=(const MsSpcNestedSignature &)=default
const Signature & sig() const
Underlying Signature object.
Definition MsSpcNestedSignature.hpp:54
static bool classof(const Attribute *attr)
Definition MsSpcNestedSignature.hpp:63
MsSpcNestedSignature(Signature sig)
Definition MsSpcNestedSignature.hpp:43
~MsSpcNestedSignature() override=default
friend class SignatureParser
Definition MsSpcNestedSignature.hpp:39
MsSpcNestedSignature(const MsSpcNestedSignature &)=default
void accept(Visitor &visitor) const override
friend class Parser
Definition MsSpcNestedSignature.hpp:38
std::unique_ptr< Attribute > clone() const override
Definition MsSpcNestedSignature.hpp:49
std::string print() const override
Print information about the attribute.
Main interface for the PKCS #7 signature scheme.
Definition Signature.hpp:42
Definition Visitor.hpp:212
#define LIEF_LIFETIMEBOUND
Definition compiler_attributes.hpp:72
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
#define LIEF_API
Definition visibility.h:45