LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
PKCS9AtSequenceNumber.hpp
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_PKCS9_AT_SEQUENCE_NUMBER_H
17#define LIEF_PE_ATTRIBUTES_PKCS9_AT_SEQUENCE_NUMBER_H
18
19#include "LIEF/visibility.h"
20#include "LIEF/errors.hpp"
21#include "LIEF/PE/signature/Attribute.hpp"
22
23namespace LIEF {
24class VectorStream;
25namespace PE {
26
27class Parser;
28class SignatureParser;
29
45class LIEF_API PKCS9AtSequenceNumber : public Attribute {
46
47 friend class Parser;
48 friend class SignatureParser;
49
50 public:
51 PKCS9AtSequenceNumber() = delete;
52 PKCS9AtSequenceNumber(uint32_t num) :
53 Attribute(Attribute::TYPE::PKCS9_AT_SEQUENCE_NUMBER),
54 number_{num}
55 {}
56
58 PKCS9AtSequenceNumber& operator=(const PKCS9AtSequenceNumber&) = default;
59
60 std::unique_ptr<Attribute> clone() const override {
61 return std::unique_ptr<Attribute>(new PKCS9AtSequenceNumber{*this});
62 }
63
65 uint32_t number() const {
66 return number_;
67 }
68
70 std::string print() const override;
71
72 static bool classof(const Attribute* attr) {
73 return attr->type() == Attribute::TYPE::PKCS9_AT_SEQUENCE_NUMBER;
74 }
75
76 void accept(Visitor& visitor) const override;
77
78 ~PKCS9AtSequenceNumber() override = default;
79
80 private:
81 uint32_t number_ = 0;
82};
83
84}
85}
86
87#endif
Interface over PKCS #7 attribute.
Definition Attribute.hpp:30
virtual TYPE type() const
Concrete type of the attribute.
Definition Attribute.hpp:60
Interface over the structure described by the OID 1.2.840.113549.1.9.25.4 (PKCS #9)
Definition PKCS9AtSequenceNumber.hpp:45
uint32_t number() const
Number as described in the RFC.
Definition PKCS9AtSequenceNumber.hpp:65
std::string print() const override
Print information about the attribute.
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
Definition Visitor.hpp:219
LIEF namespace.
Definition Abstract/Binary.hpp:32