LIEF: Library to Instrument Executable Formats Version 0.15.1
Loading...
Searching...
No Matches
PKCS9MessageDigest.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_PKCS9_MESSAGE_DIGEST_H
17#define LIEF_PE_ATTRIBUTES_PKCS9_MESSAGE_DIGEST_H
18
19#include "LIEF/visibility.h"
21#include "LIEF/span.hpp"
22
23#include <vector>
24
25namespace LIEF {
26namespace PE {
27
28class Parser;
29class SignatureParser;
30
47
48 friend class Parser;
49 friend class SignatureParser;
50
51 public:
53 PKCS9MessageDigest(std::vector<uint8_t> digest) :
54 Attribute(Attribute::TYPE::PKCS9_MESSAGE_DIGEST),
55 digest_{std::move(digest)}
56 {}
57
60
61 std::unique_ptr<Attribute> clone() const override {
62 return std::unique_ptr<Attribute>(new PKCS9MessageDigest{*this});
63 }
64
67 return digest_;
68 }
69
71 std::string print() const override;
72
73 static bool classof(const Attribute* attr) {
74 return attr->type() == Attribute::TYPE::PKCS9_MESSAGE_DIGEST;
75 }
76
77 void accept(Visitor& visitor) const override;
78
79 ~PKCS9MessageDigest() override = default;
80
81 private:
82 std::vector<uint8_t> digest_;
83};
84
85}
86}
87
88#endif
Interface over PKCS #7 attribute.
Definition PE/signature/Attribute.hpp:28
TYPE
Definition PE/signature/Attribute.hpp:34
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:61
Interface over the structure described by the OID 1.2.840.113549.1.9.4 (PKCS #9)
Definition PKCS9MessageDigest.hpp:46
PKCS9MessageDigest(std::vector< uint8_t > digest)
Definition PKCS9MessageDigest.hpp:53
std::string print() const override
Print information about the attribute.
void accept(Visitor &visitor) const override
PKCS9MessageDigest(const PKCS9MessageDigest &)=default
~PKCS9MessageDigest() override=default
PKCS9MessageDigest & operator=(const PKCS9MessageDigest &)=default
span< const uint8_t > digest() const
Message digeset as a blob of bytes as described in the RFC.
Definition PKCS9MessageDigest.hpp:66
std::unique_ptr< Attribute > clone() const override
Definition PKCS9MessageDigest.hpp:61
static bool classof(const Attribute *attr)
Definition PKCS9MessageDigest.hpp:73
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:224
LIEF namespace.
Definition Abstract/Binary.hpp:32
tcb::span< ElementType, Extent > span
Definition span.hpp:22
#define LIEF_API
Definition visibility.h:41