LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
LIEF::Parser Class Reference

Main interface to parse an executable regardless of its format. More...

#include <Parser.hpp>

Inheritance diagram for LIEF::Parser:
Inheritance graph
[legend]

Static Public Member Functions

static std::unique_ptr< Binaryparse (const std::string &filename)
 Construct an LIEF::Binary from the given filename.
 
static std::unique_ptr< Binaryparse (const std::vector< uint8_t > &raw)
 Construct an LIEF::Binary from the given raw data.
 
static std::unique_ptr< Binaryparse (std::unique_ptr< BinaryStream > stream)
 Construct an LIEF::Binary from the given stream.
 

Detailed Description

Main interface to parse an executable regardless of its format.

Member Function Documentation

◆ parse() [1/3]

static std::unique_ptr< Binary > LIEF::Parser::parse ( const std::string & filename)
static

Construct an LIEF::Binary from the given filename.

Warning
If the target file is a FAT Mach-O, it will return the last one
See also
LIEF::MachO::Parser::parse

◆ parse() [2/3]

static std::unique_ptr< Binary > LIEF::Parser::parse ( const std::vector< uint8_t > & raw)
static

Construct an LIEF::Binary from the given raw data.

Warning
If the target file is a FAT Mach-O, it will return the last one
See also
LIEF::MachO::Parser::parse

◆ parse() [3/3]

static std::unique_ptr< Binary > LIEF::Parser::parse ( std::unique_ptr< BinaryStream > stream)
static

Construct an LIEF::Binary from the given stream.

Warning
If the target file is a FAT Mach-O, it will return the last one
See also
LIEF::MachO::Parser::parse

The documentation for this class was generated from the following file: