LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
PKCS9SigningTime.hpp
Go to the documentation of this file.
1
2/* Copyright 2017 - 2026 R. Thomas
3 * Copyright 2017 - 2026 Quarkslab
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#ifndef LIEF_PE_ATTRIBUTES_PKCS9_SIGNING_TIME_H
18#define LIEF_PE_ATTRIBUTES_PKCS9_SIGNING_TIME_H
19#include <array>
20
21#include "LIEF/visibility.h"
23
24namespace LIEF {
25namespace PE {
26
45
46 friend class Parser;
47 friend class SignatureParser;
48
49 public:
51 using time_t = std::array<int32_t, 6>;
52
53 PKCS9SigningTime() = delete;
55 Attribute(Attribute::TYPE::PKCS9_SIGNING_TIME),
56 time_{time} {}
57
60
62 const time_t& time() const {
63 return time_;
64 }
65
67 std::string print() const override;
68
69 std::unique_ptr<Attribute> clone() const override {
70 return std::unique_ptr<Attribute>(new PKCS9SigningTime{*this});
71 }
72
73 static bool classof(const Attribute* attr) {
75 }
76
77 void accept(Visitor& visitor) const override;
78
79 ~PKCS9SigningTime() override = default;
80
81 private:
82 time_t time_;
83};
84
85}
86}
87
88#endif
TYPE
Definition PE/signature/Attribute.hpp:35
@ PKCS9_SIGNING_TIME
Definition PE/signature/Attribute.hpp:52
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:62
~PKCS9SigningTime() override=default
std::unique_ptr< Attribute > clone() const override
Definition PKCS9SigningTime.hpp:69
PKCS9SigningTime(const PKCS9SigningTime &)=default
std::array< int32_t, 6 > time_t
Time as an array [year, month, day, hour, min, sec].
Definition PKCS9SigningTime.hpp:51
static bool classof(const Attribute *attr)
Definition PKCS9SigningTime.hpp:73
void accept(Visitor &visitor) const override
PKCS9SigningTime & operator=(const PKCS9SigningTime &)=default
PKCS9SigningTime(time_t time)
Definition PKCS9SigningTime.hpp:54
std::string print() const override
Print information about the attribute.
const time_t & time() const
Time as an array [year, month, day, hour, min, sec].
Definition PKCS9SigningTime.hpp:62
friend class SignatureParser
Definition PKCS9SigningTime.hpp:47
friend class Parser
Definition PKCS9SigningTime.hpp:46
Definition Visitor.hpp:212
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:45