LIEF: Library to Instrument Executable Formats
Version 1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
lief-install
x86_64
static
include
LIEF
PE
signature
attributes
PKCS9MessageDigest.hpp
Go to the documentation of this file.
1
/* Copyright 2017 - 2026 R. Thomas
2
* Copyright 2017 - 2026 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
"
20
#include "
LIEF/PE/signature/Attribute.hpp
"
21
#include "
LIEF/span.hpp
"
22
23
#include <vector>
24
25
namespace
LIEF
{
26
namespace
PE
{
27
28
class
Parser
;
29
class
SignatureParser
;
30
48
class
LIEF_API
PKCS9MessageDigest
:
public
Attribute
{
49
50
friend
class
Parser
;
51
friend
class
SignatureParser
;
52
53
public
:
54
PKCS9MessageDigest
() =
delete
;
55
PKCS9MessageDigest
(std::vector<uint8_t>
digest
) :
56
Attribute
(
Attribute
::
TYPE
::PKCS9_MESSAGE_DIGEST),
57
digest_{std::move(
digest
)} {}
58
59
PKCS9MessageDigest
(
const
PKCS9MessageDigest
&) =
default
;
60
PKCS9MessageDigest
&
operator=
(
const
PKCS9MessageDigest
&) =
default
;
61
62
std::unique_ptr<Attribute>
clone
()
const override
{
63
return
std::unique_ptr<Attribute>(
new
PKCS9MessageDigest
{*
this
});
64
}
65
67
span<const uint8_t>
digest
()
const
{
68
return
digest_;
69
}
70
72
std::string
print
()
const override
;
73
74
static
bool
classof
(
const
Attribute
* attr) {
75
return
attr->
type
() ==
Attribute::TYPE::PKCS9_MESSAGE_DIGEST
;
76
}
77
78
void
accept
(
Visitor
& visitor)
const override
;
79
80
~PKCS9MessageDigest
()
override
=
default
;
81
82
private
:
83
std::vector<uint8_t> digest_;
84
};
85
86
}
87
}
88
89
#endif
Attribute.hpp
LIEF::PE::Attribute::TYPE
TYPE
Definition
PE/signature/Attribute.hpp:35
LIEF::PE::Attribute::TYPE::PKCS9_MESSAGE_DIGEST
@ PKCS9_MESSAGE_DIGEST
Definition
PE/signature/Attribute.hpp:51
LIEF::PE::Attribute::Attribute
Attribute()=delete
LIEF::PE::Attribute::type
virtual TYPE type() const
Concrete type of the attribute.
Definition
PE/signature/Attribute.hpp:62
LIEF::PE::PKCS9MessageDigest::PKCS9MessageDigest
PKCS9MessageDigest(std::vector< uint8_t > digest)
Definition
PKCS9MessageDigest.hpp:55
LIEF::PE::PKCS9MessageDigest::print
std::string print() const override
Print information about the attribute.
LIEF::PE::PKCS9MessageDigest::PKCS9MessageDigest
PKCS9MessageDigest()=delete
LIEF::PE::PKCS9MessageDigest::accept
void accept(Visitor &visitor) const override
LIEF::PE::PKCS9MessageDigest::PKCS9MessageDigest
PKCS9MessageDigest(const PKCS9MessageDigest &)=default
LIEF::PE::PKCS9MessageDigest::SignatureParser
friend class SignatureParser
Definition
PKCS9MessageDigest.hpp:51
LIEF::PE::PKCS9MessageDigest::~PKCS9MessageDigest
~PKCS9MessageDigest() override=default
LIEF::PE::PKCS9MessageDigest::operator=
PKCS9MessageDigest & operator=(const PKCS9MessageDigest &)=default
LIEF::PE::PKCS9MessageDigest::Parser
friend class Parser
Definition
PKCS9MessageDigest.hpp:50
LIEF::PE::PKCS9MessageDigest::digest
span< const uint8_t > digest() const
Message digeset as a blob of bytes as described in the RFC.
Definition
PKCS9MessageDigest.hpp:67
LIEF::PE::PKCS9MessageDigest::clone
std::unique_ptr< Attribute > clone() const override
Definition
PKCS9MessageDigest.hpp:62
LIEF::PE::PKCS9MessageDigest::classof
static bool classof(const Attribute *attr)
Definition
PKCS9MessageDigest.hpp:74
LIEF::PE::Parser
Main interface to parse PE binaries. In particular, the static Parser::parse functions should be used...
Definition
PE/Parser.hpp:52
LIEF::PE::SignatureParser
Definition
SignatureParser.hpp:37
LIEF::Visitor
Definition
Visitor.hpp:212
LIEF::PE
Namespace related to the LIEF's PE module.
Definition
Abstract/Header.hpp:32
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
LIEF::span
tcb::span< ElementType, Extent > span
Definition
span.hpp:22
span.hpp
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:43
Generated by
1.17.0