/* Copyright 2017 - 2021 R. Thomas * Copyright 2017 - 2021 Quarkslab * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include "LIEF/PE/hash.hpp" #include "LIEF/PE/signature/ContentInfo.hpp" #include "pyPE.hpp" namespace LIEF { namespace PE { template using getter_t = T (ContentInfo::*)(void) const; template using setter_t = void (ContentInfo::*)(T); template<> void create(py::module& m) { py::class_(m, "ContentInfo", R"delim( ContentInfo as described in the `RFC 2315 `_ .. code-block:: text ContentInfo ::= SEQUENCE { contentType ContentType, content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL } ContentType ::= OBJECT IDENTIFIER In the case of PE signature, ContentType **must** be set to SPC_INDIRECT_DATA_OBJID OID: ``1.3.6.1.4.1.311.2.1.4`` and content is defined by the structure: ``SpcIndirectDataContent`` .. code-block:: text SpcIndirectDataContent ::= SEQUENCE { data SpcAttributeTypeAndOptionalValue, messageDigest DigestInfo } SpcAttributeTypeAndOptionalValue ::= SEQUENCE { type ObjectID, value [0] EXPLICIT ANY OPTIONAL } For PE signature, ``SpcAttributeTypeAndOptionalValue.type`` is set to ``SPC_PE_IMAGE_DATAOBJ`` (OID: ``1.3.6.1.4.1.311.2.1.15``) and the value is defined by ``SpcPeImageData`` .. code-block:: text DigestInfo ::= SEQUENCE { digestAlgorithm AlgorithmIdentifier, digest OCTETSTRING } AlgorithmIdentifier ::= SEQUENCE { algorithm ObjectID, parameters [0] EXPLICIT ANY OPTIONAL } )delim") .def_property_readonly("content_type", &ContentInfo::content_type, "OID of the content type. This value should match ``SPC_INDIRECT_DATA_OBJID``") .def_property_readonly("digest_algorithm", &ContentInfo::digest_algorithm, "Algorithm (" RST_CLASS_REF(lief.PE.ALGORITHMS) ") used to hash the file. " "This value should match " RST_ATTR_REF_FULL(SignerInfo.digest_algorithm) " and " "" RST_ATTR_REF_FULL(Signature.digest_algorithm) "") .def_property_readonly("digest", [] (const ContentInfo& info) -> py::bytes { const std::vector& dg = info.digest(); return py::bytes(reinterpret_cast(dg.data()), dg.size()); }, "The digest as ``bytes``. It should match the binary :meth:`~lief.PE.Binary.authentihash`") .def("__hash__", [] (const ContentInfo& info) { return Hash::hash(info); }) .def("__str__", [] (const ContentInfo& content_info) { std::ostringstream stream; stream << content_info; std::string str = stream.str(); return str; }); } } }