LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
MsSpcNestedSignature.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 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
19#include "LIEF/visibility.h"
22
23
24namespace LIEF {
25namespace PE {
26
37
38 friend class Parser;
39 friend class SignatureParser;
40
41 public:
49
50 std::unique_ptr<Attribute> clone() const override {
51 return std::unique_ptr<Attribute>(new MsSpcNestedSignature{*this});
52 }
53
55 const Signature& sig() const {
56 return sig_;
57 }
58
60 std::string print() const override;
61
62 void accept(Visitor& visitor) const override;
63
64 static bool classof(const Attribute* attr) {
66 }
67
68 ~MsSpcNestedSignature() override = default;
69
70 private:
71 Signature sig_;
72};
73
74}
75}
76
77#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:55
static bool classof(const Attribute *attr)
Definition MsSpcNestedSignature.hpp:64
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:50
std::string print() const override
Print information about the attribute.
Main interface for the PKCS #7 signature scheme.
Definition Signature.hpp:39
Definition Visitor.hpp:210
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:41