LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
MsSpcNestedSignature.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 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 {
37
38 friend class Parser;
39 friend class SignatureParser;
40
41 public:
43 MsSpcNestedSignature(Signature sig) :
44 Attribute(Attribute::TYPE::MS_SPC_NESTED_SIGN),
45 sig_{std::move(sig)}
46 {}
47 MsSpcNestedSignature(const MsSpcNestedSignature&) = default;
48 MsSpcNestedSignature& operator=(const MsSpcNestedSignature&) = default;
49
50 std::unique_ptr<Attribute> clone() const override {
51 return std::unique_ptr<Attribute>(new MsSpcNestedSignature{*this});
52 }
53 const Signature& sig() const {
56 return sig_;
57 }
58 std::string print() const override;
61
62 void accept(Visitor& visitor) const override;
63
64 static bool classof(const Attribute* attr) {
65 return attr->type() == Attribute::TYPE::MS_SPC_NESTED_SIGN;
66 }
67
68 ~MsSpcNestedSignature() override = default;
69
70 private:
71 Signature sig_;
72};
73
74}
75}
76
77#endif
Interface over PKCS #7 attribute.
Definition PE/signature/Attribute.hpp:29
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:62
Interface over the structure described by the OID 1.3.6.1.4.1.311.2.4.1
Definition MsSpcNestedSignature.hpp:36
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()=delete
~MsSpcNestedSignature() override=default
MsSpcNestedSignature(const MsSpcNestedSignature &)=default
void accept(Visitor &visitor) const override
std::unique_ptr< Attribute > clone() const override
Definition MsSpcNestedSignature.hpp:50
std::string print() const override
Print information about the attribute.
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
LIEF namespace.
Definition Abstract/Binary.hpp:36
#define LIEF_API
Definition visibility.h:41