lief 0.16.5__cp311-cp311-win_amd64.whl → 0.17.0__cp311-cp311-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lief might be problematic. Click here for more details.
- lief/ART/__init__.pyi +19 -18
- lief/COFF/__init__.pyi +708 -0
- lief/DEX/__init__.pyi +165 -159
- lief/ELF/__init__.pyi +2807 -2348
- lief/MachO/__init__.pyi +1877 -1457
- lief/OAT/__init__.pyi +153 -150
- lief/PE/__init__.pyi +2633 -2021
- lief/PE/unwind_aarch64/__init__.pyi +58 -0
- lief/PE/unwind_x64/__init__.pyi +53 -0
- lief/VDEX/__init__.pyi +10 -8
- lief/__init__.py +1 -1
- lief/__init__.pyi +280 -249
- lief/_lief.pyd +0 -0
- lief/assembly/__init__.pyi +17 -0
- lief/assembly/aarch64/__init__.pyi +11015 -8889
- lief/assembly/aarch64/operands/__init__.pyi +5 -5
- lief/assembly/arm/__init__.pyi +4521 -4491
- lief/assembly/ebpf/__init__.pyi +535 -481
- lief/assembly/mips/__init__.pyi +2926 -2888
- lief/assembly/powerpc/__init__.pyi +2958 -2846
- lief/assembly/riscv/__init__.pyi +14788 -13826
- lief/assembly/x86/__init__.pyi +24970 -19926
- lief/assembly/x86/operands/__init__.pyi +5 -5
- lief/dsc/__init__.pyi +31 -25
- lief/dwarf/__init__.pyi +160 -146
- lief/dwarf/editor/__init__.pyi +138 -0
- lief/dwarf/parameters/__init__.pyi +3 -3
- lief/dwarf/types/__init__.pyi +49 -49
- lief/logging/__init__.pyi +12 -12
- lief/objc/__init__.pyi +26 -26
- lief/pdb/__init__.pyi +272 -38
- lief/pdb/types/__init__.pyi +22 -22
- {lief-0.16.5.dist-info → lief-0.17.0.dist-info}/METADATA +1 -1
- lief-0.17.0.dist-info/RECORD +37 -0
- lief-0.16.5.dist-info/RECORD +0 -33
- {lief-0.16.5.dist-info → lief-0.17.0.dist-info}/WHEEL +0 -0
lief/ART/__init__.pyi
CHANGED
|
@@ -5,8 +5,25 @@ import os
|
|
|
5
5
|
from typing import Iterator, Optional, Union, overload
|
|
6
6
|
|
|
7
7
|
import lief
|
|
8
|
+
import lief.Android
|
|
8
9
|
|
|
9
10
|
|
|
11
|
+
class STORAGE_MODES(enum.Enum):
|
|
12
|
+
UNCOMPRESSED = 0
|
|
13
|
+
|
|
14
|
+
LZ4 = 1
|
|
15
|
+
|
|
16
|
+
LZ4HC = 2
|
|
17
|
+
|
|
18
|
+
@overload
|
|
19
|
+
def parse(filename: str) -> Optional[File]: ...
|
|
20
|
+
|
|
21
|
+
@overload
|
|
22
|
+
def parse(raw: Sequence[int], name: str = '') -> Optional[File]: ...
|
|
23
|
+
|
|
24
|
+
@overload
|
|
25
|
+
def parse(obj: Union[str | io.IOBase | os.PathLike | bytes | list[int]], name: str = '') -> Optional[File]: ...
|
|
26
|
+
|
|
10
27
|
class File(lief.Object):
|
|
11
28
|
@property
|
|
12
29
|
def header(self) -> Header: ...
|
|
@@ -76,26 +93,10 @@ class Header(lief.Object):
|
|
|
76
93
|
|
|
77
94
|
def __str__(self) -> str: ...
|
|
78
95
|
|
|
79
|
-
class STORAGE_MODES(enum.Enum):
|
|
80
|
-
UNCOMPRESSED = 0
|
|
81
|
-
|
|
82
|
-
LZ4 = 1
|
|
83
|
-
|
|
84
|
-
LZ4HC = 2
|
|
85
|
-
|
|
86
|
-
def android_version(art_version: int) -> lief.Android.ANDROID_VERSIONS: ...
|
|
87
|
-
|
|
88
|
-
@overload
|
|
89
|
-
def parse(filename: str) -> Optional[File]: ...
|
|
90
|
-
|
|
91
|
-
@overload
|
|
92
|
-
def parse(raw: Sequence[int], name: str = '') -> Optional[File]: ...
|
|
93
|
-
|
|
94
|
-
@overload
|
|
95
|
-
def parse(obj: Union[io.IOBase | os.PathLike], name: str = '') -> Optional[File]: ...
|
|
96
|
-
|
|
97
96
|
@overload
|
|
98
97
|
def version(file: str) -> int: ...
|
|
99
98
|
|
|
100
99
|
@overload
|
|
101
100
|
def version(raw: Sequence[int]) -> int: ...
|
|
101
|
+
|
|
102
|
+
def android_version(art_version: int) -> lief.Android.ANDROID_VERSIONS: ...
|