lief 0.16.7__cp310-cp310-manylinux_2_28_i686.whl → 0.17.1__cp310-cp310-manylinux_2_28_i686.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/dsc/__init__.pyi CHANGED
@@ -12,7 +12,7 @@ import lief.assembly
12
12
  def enable_cache() -> bool: ...
13
13
 
14
14
  @overload
15
- def enable_cache(target_cache_dir: str) -> bool: ...
15
+ def enable_cache(target_cache_dir: Union[str | os.PathLike]) -> bool: ...
16
16
 
17
17
  class DyldSharedCache:
18
18
  class VERSION(enum.Enum):
@@ -34,7 +34,11 @@ class DyldSharedCache:
34
34
 
35
35
  DYLD_1042_1 = 8
36
36
 
37
- UNRELEASED = 9
37
+ DYLD_1231_3 = 9
38
+
39
+ DYLD_1284_13 = 10
40
+
41
+ UNRELEASED = 11
38
42
 
39
43
  class PLATFORM(enum.Enum):
40
44
  UNKNOWN = 0
@@ -154,7 +158,7 @@ class DyldSharedCache:
154
158
  def load(files: Sequence[str]) -> Optional[DyldSharedCache]: ...
155
159
 
156
160
  @overload
157
- def load(path: os.PathLike, arch: str = '') -> Optional[DyldSharedCache]: ...
161
+ def load(path: Union[str | os.PathLike], arch: str = '') -> Optional[DyldSharedCache]: ...
158
162
 
159
163
  class Dylib:
160
164
  class extract_opt_t:
lief/dwarf/__init__.pyi CHANGED
@@ -1,12 +1,17 @@
1
1
  import enum
2
+ import os
2
3
  from typing import Iterator, Optional, Union, overload
3
4
 
4
- from . import parameters as parameters, types as types
5
+ from . import (
6
+ editor as editor,
7
+ parameters as parameters,
8
+ types as types
9
+ )
5
10
  import lief
6
11
  import lief.assembly
7
12
 
8
13
 
9
- def load(path: str) -> Optional[DebugInfo]: ...
14
+ def load(path: Union[str | os.PathLike]) -> Optional[DebugInfo]: ...
10
15
 
11
16
  class Scope:
12
17
  class TYPE(enum.Enum):
@@ -291,3 +296,11 @@ class DebugInfo(lief.DebugInfo):
291
296
 
292
297
  @property
293
298
  def compilation_units(self) -> Iterator[Optional[CompilationUnit]]: ...
299
+
300
+ class Editor:
301
+ @staticmethod
302
+ def from_binary(bin: lief.Binary) -> Optional[Editor]: ...
303
+
304
+ def create_compilation_unit(self) -> Optional[editor.CompilationUnit]: ...
305
+
306
+ def write(self, output: Union[str | os.PathLike]) -> None: ...
@@ -0,0 +1,138 @@
1
+ from collections.abc import Sequence
2
+ import enum
3
+ from typing import Iterator, Optional, Union, overload
4
+
5
+
6
+ class Type:
7
+ def pointer_to(self) -> Optional[PointerType]: ...
8
+
9
+ class PointerType(Type):
10
+ pass
11
+
12
+ class EnumType(Type):
13
+ class Value:
14
+ pass
15
+
16
+ def set_size(self, size: int) -> EnumType: ...
17
+
18
+ def add_value(self, name: str, value: int) -> Optional[EnumType.Value]: ...
19
+
20
+ class BaseType(Type):
21
+ class ENCODING(enum.Enum):
22
+ NONE = 0
23
+
24
+ ADDRESS = 1
25
+
26
+ SIGNED = 2
27
+
28
+ SIGNED_CHAR = 3
29
+
30
+ UNSIGNED = 4
31
+
32
+ UNSIGNED_CHAR = 5
33
+
34
+ BOOLEAN = 6
35
+
36
+ FLOAT = 7
37
+
38
+ class ArrayType(Type):
39
+ pass
40
+
41
+ class FunctionType(Type):
42
+ class Parameter:
43
+ pass
44
+
45
+ def set_return_type(self, type: Type) -> FunctionType: ...
46
+
47
+ def add_parameter(self, type: Type) -> Optional[FunctionType.Parameter]: ...
48
+
49
+ class TypeDef(Type):
50
+ pass
51
+
52
+ class StructType(Type):
53
+ class TYPE(enum.Enum):
54
+ CLASS = 0
55
+
56
+ STRUCT = 1
57
+
58
+ UNION = 2
59
+
60
+ class Member:
61
+ pass
62
+
63
+ def set_size(self, size: int) -> StructType: ...
64
+
65
+ def add_member(self, name: str, type: Type, offset: int = -1) -> Optional[StructType.Member]: ...
66
+
67
+ class Function:
68
+ class range_t:
69
+ @overload
70
+ def __init__(self) -> None: ...
71
+
72
+ @overload
73
+ def __init__(self, start: int, end: int) -> None: ...
74
+
75
+ start: int
76
+
77
+ end: int
78
+
79
+ class Parameter:
80
+ pass
81
+
82
+ class LexicalBlock:
83
+ pass
84
+
85
+ class Label:
86
+ pass
87
+
88
+ def set_address(self, addr: int) -> Function: ...
89
+
90
+ def set_low_high(self, low: int, high: int) -> Function: ...
91
+
92
+ def set_ranges(self, ranges: Sequence[Function.range_t]) -> Function: ...
93
+
94
+ def set_external(self) -> Function: ...
95
+
96
+ def set_return_type(self, type: Type) -> Function: ...
97
+
98
+ def add_parameter(self, name: str, type: Type) -> Optional[Function.Parameter]: ...
99
+
100
+ def create_stack_variable(self, name: str) -> Optional[Variable]: ...
101
+
102
+ def add_lexical_block(self, start: int, end: int) -> Optional[Function.LexicalBlock]: ...
103
+
104
+ def add_label(self, addr: int, label: str) -> Optional[Function.Label]: ...
105
+
106
+ class Variable:
107
+ def set_addr(self, addr: int) -> Variable: ...
108
+
109
+ def set_stack_offset(self, offset: int) -> Variable: ...
110
+
111
+ def set_external(self) -> Variable: ...
112
+
113
+ def set_type(self, type: Type) -> Variable: ...
114
+
115
+ class CompilationUnit:
116
+ def set_producer(self, arg: str, /) -> CompilationUnit: ...
117
+
118
+ def create_function(self, name: str) -> Optional[Function]: ...
119
+
120
+ def create_variable(self, name: str) -> Optional[Variable]: ...
121
+
122
+ def create_generic_type(self, name: str) -> Optional[Type]: ...
123
+
124
+ def create_enum(self, name: str) -> Optional[EnumType]: ...
125
+
126
+ def create_typedef(self, name: str, ty: Type) -> Optional[TypeDef]: ...
127
+
128
+ def create_structure(self, name: str, kind: StructType.TYPE = StructType.TYPE.STRUCT) -> Optional[StructType]: ...
129
+
130
+ def create_base_type(self, name: str, size: int, encoding: BaseType.ENCODING = BaseType.ENCODING.NONE) -> Optional[BaseType]: ...
131
+
132
+ def create_function_type(self, name: str) -> Optional[FunctionType]: ...
133
+
134
+ def create_pointer_type(self, ty: Type) -> Optional[PointerType]: ...
135
+
136
+ def create_void_type(self) -> Optional[Type]: ...
137
+
138
+ def create_array(self, name: str, ty: Type, count: int) -> Optional[ArrayType]: ...
lief/pdb/__init__.pyi CHANGED
@@ -1,4 +1,5 @@
1
1
  import enum
2
+ import os
2
3
  from typing import Iterator, Optional, Union
3
4
 
4
5
  from . import types as types
@@ -7,6 +8,228 @@ import lief
7
8
 
8
9
  def load(path: str) -> Optional[DebugInfo]: ...
9
10
 
11
+ class BuildMetadata:
12
+ class LANG(enum.Enum):
13
+ C = 0
14
+
15
+ CPP = 1
16
+
17
+ FORTRAN = 2
18
+
19
+ MASM = 3
20
+
21
+ PASCAL_LANG = 4
22
+
23
+ BASIC = 5
24
+
25
+ COBOL = 6
26
+
27
+ LINK = 7
28
+
29
+ CVTRES = 8
30
+
31
+ CVTPGD = 9
32
+
33
+ CSHARP = 10
34
+
35
+ VB = 11
36
+
37
+ ILASM = 12
38
+
39
+ JAVA = 13
40
+
41
+ JSCRIPT = 14
42
+
43
+ MSIL = 15
44
+
45
+ HLSL = 16
46
+
47
+ OBJC = 17
48
+
49
+ OBJCPP = 18
50
+
51
+ SWIFT = 19
52
+
53
+ ALIASOBJ = 20
54
+
55
+ RUST = 21
56
+
57
+ GO = 22
58
+
59
+ UNKNOWN = 255
60
+
61
+ class CPU(enum.Enum):
62
+ INTEL_8080 = 0
63
+
64
+ INTEL_8086 = 1
65
+
66
+ INTEL_80286 = 2
67
+
68
+ INTEL_80386 = 3
69
+
70
+ INTEL_80486 = 4
71
+
72
+ PENTIUM = 5
73
+
74
+ PENTIUMPRO = 6
75
+
76
+ PENTIUM3 = 7
77
+
78
+ MIPS = 16
79
+
80
+ MIPS16 = 17
81
+
82
+ MIPS32 = 18
83
+
84
+ MIPS64 = 19
85
+
86
+ MIPSI = 20
87
+
88
+ MIPSII = 21
89
+
90
+ MIPSIII = 22
91
+
92
+ MIPSIV = 23
93
+
94
+ MIPSV = 24
95
+
96
+ M68000 = 32
97
+
98
+ M68010 = 33
99
+
100
+ M68020 = 34
101
+
102
+ M68030 = 35
103
+
104
+ M68040 = 36
105
+
106
+ ALPHA = 48
107
+
108
+ ALPHA_21164 = 49
109
+
110
+ ALPHA_21164A = 50
111
+
112
+ ALPHA_21264 = 51
113
+
114
+ ALPHA_21364 = 52
115
+
116
+ PPC601 = 64
117
+
118
+ PPC603 = 65
119
+
120
+ PPC604 = 66
121
+
122
+ PPC620 = 67
123
+
124
+ PPCFP = 68
125
+
126
+ PPCBE = 69
127
+
128
+ SH3 = 80
129
+
130
+ SH3E = 81
131
+
132
+ SH3DSP = 82
133
+
134
+ SH4 = 83
135
+
136
+ SHMEDIA = 84
137
+
138
+ ARM3 = 96
139
+
140
+ ARM4 = 97
141
+
142
+ ARM4T = 98
143
+
144
+ ARM5 = 99
145
+
146
+ ARM5T = 100
147
+
148
+ ARM6 = 101
149
+
150
+ ARM_XMAC = 102
151
+
152
+ ARM_WMMX = 103
153
+
154
+ ARM7 = 104
155
+
156
+ OMNI = 112
157
+
158
+ IA64 = 128
159
+
160
+ IA64_2 = 129
161
+
162
+ CEE = 144
163
+
164
+ AM33 = 160
165
+
166
+ M32R = 176
167
+
168
+ TRICORE = 192
169
+
170
+ X64 = 208
171
+
172
+ EBC = 224
173
+
174
+ THUMB = 240
175
+
176
+ ARMNT = 244
177
+
178
+ ARM64 = 246
179
+
180
+ HYBRID_X86ARM64 = 247
181
+
182
+ ARM64EC = 248
183
+
184
+ ARM64X = 249
185
+
186
+ D3D11_SHADER = 256
187
+
188
+ UNKNOWN = 255
189
+
190
+ class version_t:
191
+ major: int
192
+
193
+ minor: int
194
+
195
+ build: int
196
+
197
+ qfe: int
198
+
199
+ class build_info_t:
200
+ cwd: str
201
+
202
+ build_tool: str
203
+
204
+ source_file: str
205
+
206
+ pdb: str
207
+
208
+ command_line: str
209
+
210
+ @property
211
+ def frontend_version(self) -> BuildMetadata.version_t: ...
212
+
213
+ @property
214
+ def backend_version(self) -> BuildMetadata.version_t: ...
215
+
216
+ @property
217
+ def version(self) -> str: ...
218
+
219
+ @property
220
+ def language(self) -> BuildMetadata.LANG: ...
221
+
222
+ @property
223
+ def target_cpu(self) -> BuildMetadata.CPU: ...
224
+
225
+ @property
226
+ def build_info(self) -> BuildMetadata.build_info_t | None: ...
227
+
228
+ @property
229
+ def env(self) -> list[str]: ...
230
+
231
+ def __str__(self) -> str: ...
232
+
10
233
  class Type:
11
234
  class KIND(enum.Enum):
12
235
  UNKNOWN = 0
@@ -44,7 +267,7 @@ class DebugInfo(lief.DebugInfo):
44
267
  def guid(self) -> str: ...
45
268
 
46
269
  @staticmethod
47
- def from_file(filepath: str) -> Optional[DebugInfo]: ...
270
+ def from_file(filepath: Union[str | os.PathLike]) -> Optional[DebugInfo]: ...
48
271
 
49
272
  def find_type(self, name: str) -> Optional[Type]: ...
50
273
 
@@ -59,6 +282,8 @@ class DebugInfo(lief.DebugInfo):
59
282
  @property
60
283
  def types(self) -> Iterator[Optional[Type]]: ...
61
284
 
285
+ def __str__(self) -> str: ...
286
+
62
287
  class PublicSymbol:
63
288
  @property
64
289
  def name(self) -> str: ...
@@ -72,6 +297,8 @@ class PublicSymbol:
72
297
  @property
73
298
  def demangled_name(self) -> str: ...
74
299
 
300
+ def __str__(self) -> str: ...
301
+
75
302
  class CompilationUnit:
76
303
  @property
77
304
  def module_name(self) -> str: ...
@@ -85,6 +312,11 @@ class CompilationUnit:
85
312
  @property
86
313
  def functions(self) -> Iterator[Optional[Function]]: ...
87
314
 
315
+ @property
316
+ def build_metadata(self) -> Optional[BuildMetadata]: ...
317
+
318
+ def __str__(self) -> str: ...
319
+
88
320
  class Function:
89
321
  @property
90
322
  def name(self) -> str: ...
@@ -100,3 +332,5 @@ class Function:
100
332
 
101
333
  @property
102
334
  def debug_location(self) -> lief.debug_location_t: ...
335
+
336
+ def __str__(self) -> str: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: lief
3
- Version: 0.16.7
3
+ Version: 0.17.1
4
4
  Summary: Library to instrument executable formats
5
5
  Keywords: parser,elf,pe,macho,reverse-engineering
6
6
  Author-Email: Romain Thomas <contact@lief.re>
@@ -0,0 +1,37 @@
1
+ lief/ART/__init__.pyi,sha256=zcsBW9vkC5lCOGabLe5tpXvpKAa69ig3kYwRv5p9zGs,1938
2
+ lief/Android/__init__.pyi,sha256=H01bnBakndPhjeV76KbniMaqCfOg6h06oMP3T-AcUrg,567
3
+ lief/COFF/__init__.pyi,sha256=T3H3Z_xtcliTOwYTlW6Mhf0xRaHFfrKGngF5SoYvIZk,13179
4
+ lief/DEX/__init__.pyi,sha256=4uD6Iq1cHu0wz88Nuo8PHaSgGztIaXyzGo3bry1ACEg,9919
5
+ lief/ELF/__init__.pyi,sha256=kGRblWR1_phI_wevr9MNP6SSSDUdDunWcpNsCR1NhO8,107196
6
+ lief/MachO/__init__.pyi,sha256=60XzvI5UaONj43SIlahka0GPSks8c-wysJ27PSlmRk8,63339
7
+ lief/OAT/__init__.pyi,sha256=Vnhyb4pfH5_vNIMXS36ZJ4soi3k9LRoxqYaZMRqL_hk,6871
8
+ lief/PE/__init__.pyi,sha256=Z_56ENvBDKrylQrbQsv4A3DVj4pKdartWaEbhVgOlds,87835
9
+ lief/PE/unwind_aarch64/__init__.pyi,sha256=AsVMrDjVs3CG57tHwoVUY4bbKiONmJg7O0UcilDBgpQ,1029
10
+ lief/PE/unwind_x64/__init__.pyi,sha256=xMkmxMvNss4LLgnIhRXuZHfkJDdbvCCaGsJadgGA4nc,1003
11
+ lief/VDEX/__init__.pyi,sha256=CTKJ3EpvM5A6P1g-7cVK98tMxhDjr-c-KUXcI8oJeO0,1159
12
+ lief/__init__.py,sha256=DYF2L6DYYY0zPJgrfgKbwSeXjIG0v-lnBJex11W1pxA,652
13
+ lief/__init__.pyi,sha256=vyqr_wNoGhZDbI-lrNhSL0S6zlX1jdm1bPDOjRLu27g,11910
14
+ lief/_lief.so,sha256=70c6ztJHJ3f66c8rACrtpDNyADI-52eTzX7GD5BqyMk,11767848
15
+ lief/assembly/__init__.pyi,sha256=yQ1CrlFny0MVHZodXFHJjshl1F9fU-Lh66Qv3Lm97dI,2243
16
+ lief/assembly/aarch64/__init__.pyi,sha256=QCi2Cq4KM_GZNxUgAC3gvQVymplRfzIhFHt8Gt6_-sM,277594
17
+ lief/assembly/aarch64/operands/__init__.pyi,sha256=5bBLVZlgVYC9kFhYHICw0vvzvcAWKD7RVDupIlXKZD4,1019
18
+ lief/assembly/arm/__init__.pyi,sha256=8WH8WpwaQP7kLD8bqBK3hadaO82QFQ8-v-jrN9pSoY8,108476
19
+ lief/assembly/ebpf/__init__.pyi,sha256=_NTWE873qS7rcCZXySBT_zljL3s1Y-7IpJxt_9_GRbA,11412
20
+ lief/assembly/mips/__init__.pyi,sha256=YaLVWEIa4dwzm-Bdz8btDHmSxMYWm4X6R1X64EQ6Qk4,64213
21
+ lief/assembly/powerpc/__init__.pyi,sha256=pmr_vbcQ-l104MIeAYXICtbStuiambOrx7tl6d16yfU,61286
22
+ lief/assembly/riscv/__init__.pyi,sha256=Zz06NCsRk4nQqNBYqwSPGW6hqc1XCX1ZtTq5M_6ZATE,504025
23
+ lief/assembly/x86/__init__.pyi,sha256=E6WprS7mKLPrqzr6M4MjdAef2eHgDHeDwARZRFYqi2c,614761
24
+ lief/assembly/x86/operands/__init__.pyi,sha256=eTJFLYTL4KJaFXslpxJHTEqjpeAeY1CY5RBsSb-LPRw,720
25
+ lief/dsc/__init__.pyi,sha256=1iBlkh5kEBOQnXufKbcvGMipn0jdjitCF_evcywd3kE,4249
26
+ lief/dwarf/__init__.pyi,sha256=U1Pb75qIY5jzQwY689N8CdVQRiWrPKRbftG7jVkABBE,5651
27
+ lief/dwarf/editor/__init__.pyi,sha256=r7ivg51l9MgIGacjMFP4_U7CU1D9Fi2YyGax9Q85UHs,3368
28
+ lief/dwarf/parameters/__init__.pyi,sha256=YhxhncJ50xFEHBw2KRby9W-03Bg1ik0QnvKAW8TmaHw,274
29
+ lief/dwarf/types/__init__.pyi,sha256=s355OsV05G3CLGVYoEwMhwNVN5iHsI5YCOGnRvX6BMA,3525
30
+ lief/logging/__init__.pyi,sha256=t4zzsGm3YMxftAFFlIc7Q_tPJOaCh2AYvsAjmDZuy6o,626
31
+ lief/objc/__init__.pyi,sha256=qQKrV5tj-sjXw-uRO3hLq8w6o-qpldXUEdWGeEiy-9E,1854
32
+ lief/pdb/__init__.pyi,sha256=ef8iPAocNsZ6Qk250u6lPoP9DsFT7mgNwGdmjlX2LFQ,4767
33
+ lief/pdb/types/__init__.pyi,sha256=YcQvpRNCxwVEMXAbDvQdbF-_EacqyUc6TwfmcFiPOdY,1198
34
+ lief/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ lief-0.17.1.dist-info/METADATA,sha256=iyAiRpamfRQFFTmEFazqsPUeitEIMjFyjJEsVHiRY-Q,2423
36
+ lief-0.17.1.dist-info/WHEEL,sha256=CXyD1OxNV3RxeHCkLR3Up_ltQL2H9tl9XHdkvC3UIlE,116
37
+ lief-0.17.1.dist-info/RECORD,,
@@ -1,33 +0,0 @@
1
- lief/ART/__init__.pyi,sha256=wcaWKcum8r6tBF6IHOrbIfNYuT8J53Lj4sFPUiCxaRw,1912
2
- lief/Android/__init__.pyi,sha256=H01bnBakndPhjeV76KbniMaqCfOg6h06oMP3T-AcUrg,567
3
- lief/DEX/__init__.pyi,sha256=hXt4zosga31XqX8qMyJDzRRcvE0T7t2eU00icErII5s,9783
4
- lief/ELF/__init__.pyi,sha256=Oex62GWRsPz2bPCCoLY8grwqE7X4HlFwO9TsIqnTKYQ,98341
5
- lief/MachO/__init__.pyi,sha256=kne_34xkjldhoo9c_47cEssEA519WKyE1yvsDTyj4e4,54873
6
- lief/OAT/__init__.pyi,sha256=eKZOFvGBYwIR-drcQo3XE53LEZFBcWHO5CaAMbBYGeg,6845
7
- lief/PE/__init__.pyi,sha256=kwmd9BtUOBSi1KpM--cBJ3zhAsstVv0BGS4sRsqKklc,70293
8
- lief/VDEX/__init__.pyi,sha256=4qH3jj0b7WDiWrdM9PqdTIt8hEftcfQJust55L0ofjA,1133
9
- lief/__init__.py,sha256=sOMCNwqJ22NGeTiw6U8ZGdU974xKMcPJeVrqw_IuAFo,643
10
- lief/__init__.pyi,sha256=7PQ_GxS0gx1mp_HnrV_6eJDS8NycgTzcgSwFm8O-E6c,11122
11
- lief/_lief.so,sha256=RayI3L2pdLnJv6Y4JW8aJKqXKNV3nKxf_QBZzhF0Kd0,10344168
12
- lief/assembly/__init__.pyi,sha256=9lEo2ZtNqce4cdVzkV1_mQ3P2PFGbMwBchjFFIe3gl0,1914
13
- lief/assembly/aarch64/__init__.pyi,sha256=5ZgBsf4rjAH4n40GOaHDIkGC8CLVZ5_s_1Wlnp9pOhY,250909
14
- lief/assembly/aarch64/operands/__init__.pyi,sha256=5bBLVZlgVYC9kFhYHICw0vvzvcAWKD7RVDupIlXKZD4,1019
15
- lief/assembly/arm/__init__.pyi,sha256=lQ9V6J2ExKNC7iKKB5GBPQinjYK-5gG7snxbPLmv27M,108148
16
- lief/assembly/ebpf/__init__.pyi,sha256=7YpNeTioVhmI7yRei0hEiR7AxaYqXOJJhECmbXQoGD8,10781
17
- lief/assembly/mips/__init__.pyi,sha256=hV9qFxLW71mbaz-rPrKYGPxGf9h_1LTask1JEhfFsOw,63719
18
- lief/assembly/powerpc/__init__.pyi,sha256=1lTlXrHAGJAwAC7sawErWoafSnSoz0iS0RQnOoIx3M0,59827
19
- lief/assembly/riscv/__init__.pyi,sha256=1U5wTzboVa1lPS7wYE3MAxn7Tfn2kImROyf2apsFEXI,491259
20
- lief/assembly/x86/__init__.pyi,sha256=ziUTbPDjF0fFp6nP5g6uFQhNWxlMIrcCkX7hGCxj2V8,537269
21
- lief/assembly/x86/operands/__init__.pyi,sha256=eTJFLYTL4KJaFXslpxJHTEqjpeAeY1CY5RBsSb-LPRw,720
22
- lief/dsc/__init__.pyi,sha256=YBNEJfg-3nSypc4dHfZvquzjRkGbi2QdYcIqatt4LzY,4162
23
- lief/dwarf/__init__.pyi,sha256=o-h98w8pTJB7W5EkTL-Fyc2hAs14bxJIu-z-XJRCboY,5342
24
- lief/dwarf/parameters/__init__.pyi,sha256=YhxhncJ50xFEHBw2KRby9W-03Bg1ik0QnvKAW8TmaHw,274
25
- lief/dwarf/types/__init__.pyi,sha256=s355OsV05G3CLGVYoEwMhwNVN5iHsI5YCOGnRvX6BMA,3525
26
- lief/logging/__init__.pyi,sha256=t4zzsGm3YMxftAFFlIc7Q_tPJOaCh2AYvsAjmDZuy6o,626
27
- lief/objc/__init__.pyi,sha256=qQKrV5tj-sjXw-uRO3hLq8w6o-qpldXUEdWGeEiy-9E,1854
28
- lief/pdb/__init__.pyi,sha256=qbn8HYU4_qJfCa849ZL_oQIOcTUNdVgJ5-HgaYiyhuk,1849
29
- lief/pdb/types/__init__.pyi,sha256=YcQvpRNCxwVEMXAbDvQdbF-_EacqyUc6TwfmcFiPOdY,1198
30
- lief/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- lief-0.16.7.dist-info/METADATA,sha256=RP9fDZ8rS7nZy9CpWnBtPitBREwIbXZlJLzdyhLsusw,2423
32
- lief-0.16.7.dist-info/WHEEL,sha256=CXyD1OxNV3RxeHCkLR3Up_ltQL2H9tl9XHdkvC3UIlE,116
33
- lief-0.16.7.dist-info/RECORD,,
File without changes