LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
PKCS9SigningTime.hpp
1
2/* Copyright 2017 - 2024 R. Thomas
3 * Copyright 2017 - 2024 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"
22#include "LIEF/PE/signature/Attribute.hpp"
23
24namespace LIEF {
25class VectorStream;
26namespace PE {
27
43class LIEF_API PKCS9SigningTime : public Attribute {
44
45 friend class Parser;
46 friend class SignatureParser;
47
48 public:
50 using time_t = std::array<int32_t, 6>;
51
52 PKCS9SigningTime() = delete;
54 Attribute(Attribute::TYPE::PKCS9_SIGNING_TIME),
55 time_{time}
56 {}
57
58 PKCS9SigningTime(const PKCS9SigningTime&) = default;
59 PKCS9SigningTime& operator=(const PKCS9SigningTime&) = default;
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) {
74 return attr->type() == Attribute::TYPE::PKCS9_SIGNING_TIME;
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
Interface over PKCS #7 attribute.
Definition Attribute.hpp:28
Interface over the structure described by the OID 1.2.840.113549.1.9.5 (PKCS #9)
Definition PKCS9SigningTime.hpp:43
std::array< int32_t, 6 > time_t
Time as an array [year, month, day, hour, min, sec].
Definition PKCS9SigningTime.hpp:50
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
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
Definition SignatureParser.hpp:37
LIEF namespace.
Definition Abstract/Binary.hpp:31