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/errors.hpp"
23#include "LIEF/PE/signature/Attribute.hpp"
24
25namespace LIEF {
26class VectorStream;
27namespace PE {
28
44class LIEF_API PKCS9SigningTime : public Attribute {
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 {}
58
59 PKCS9SigningTime(const PKCS9SigningTime&) = default;
60 PKCS9SigningTime& operator=(const PKCS9SigningTime&) = default;
61
63 const time_t& time() const {
64 return time_;
65 }
66
68 std::string print() const override;
69
70 std::unique_ptr<Attribute> clone() const override {
71 return std::unique_ptr<Attribute>(new PKCS9SigningTime{*this});
72 }
73
74 static bool classof(const Attribute* attr) {
75 return attr->type() == Attribute::TYPE::PKCS9_SIGNING_TIME;
76 }
77
78 void accept(Visitor& visitor) const override;
79
80 ~PKCS9SigningTime() override = default;
81
82 private:
83 time_t time_;
84};
85
86}
87}
88
89#endif
Interface over PKCS #7 attribute.
Definition Attribute.hpp:30
Interface over the structure described by the OID 1.2.840.113549.1.9.5 (PKCS #9)
Definition PKCS9SigningTime.hpp:44
std::array< int32_t, 6 > time_t
Time as an array [year, month, day, hour, min, sec].
Definition PKCS9SigningTime.hpp:51
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:63
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:32