libesedb-python 20240420__tar.gz → 20260704__tar.gz

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.
Files changed (1895) hide show
  1. libesedb_python-20260704/AUTHORS +4 -0
  2. {libesedb-20240420 → libesedb_python-20260704}/INSTALL +0 -0
  3. libesedb_python-20260704/Makefile.am +113 -0
  4. libesedb_python-20260704/Makefile.in +1255 -0
  5. libesedb_python-20260704/PKG-INFO +44 -0
  6. libesedb_python-20260704/README +27 -0
  7. libesedb_python-20260704/_build.py +275 -0
  8. libesedb_python-20260704/acinclude.m4 +36 -0
  9. libesedb_python-20260704/aclocal.m4 +1551 -0
  10. libesedb_python-20260704/common/Makefile.in +813 -0
  11. libesedb_python-20260704/common/byte_stream.h +312 -0
  12. libesedb_python-20260704/common/common.h +43 -0
  13. libesedb_python-20260704/common/config.h +638 -0
  14. libesedb_python-20260704/common/config.h.in +637 -0
  15. libesedb_python-20260704/common/config_borlandc.h +26 -0
  16. libesedb_python-20260704/common/config_msc.h +34 -0
  17. libesedb_python-20260704/common/config_winapi.h +97 -0
  18. libesedb_python-20260704/common/file_stream.h +151 -0
  19. libesedb_python-20260704/common/memory.h +129 -0
  20. libesedb_python-20260704/common/narrow_string.h +187 -0
  21. libesedb_python-20260704/common/system_string.h +154 -0
  22. libesedb_python-20260704/common/types.h +392 -0
  23. libesedb_python-20260704/common/types.h.in +392 -0
  24. libesedb_python-20260704/common/wide_string.h +175 -0
  25. libesedb_python-20260704/config.guess +1754 -0
  26. libesedb_python-20260704/config.sub +1890 -0
  27. libesedb_python-20260704/configure +67513 -0
  28. libesedb_python-20260704/configure.ac +272 -0
  29. libesedb_python-20260704/dpkg/changelog +5 -0
  30. libesedb_python-20260704/dpkg/compat +1 -0
  31. libesedb_python-20260704/dpkg/control +65 -0
  32. libesedb_python-20260704/dpkg/copyright +25 -0
  33. libesedb_python-20260704/dpkg/rules +31 -0
  34. libesedb_python-20260704/esedbtools/Makefile.am +115 -0
  35. libesedb_python-20260704/esedbtools/Makefile.in +1086 -0
  36. libesedb_python-20260704/esedbtools/database_types.c +203 -0
  37. libesedb_python-20260704/esedbtools/database_types.h +76 -0
  38. libesedb_python-20260704/esedbtools/esedbexport.c +578 -0
  39. libesedb_python-20260704/esedbtools/esedbinfo.c +312 -0
  40. libesedb_python-20260704/esedbtools/esedbtools_getopt.c +572 -0
  41. libesedb_python-20260704/esedbtools/esedbtools_getopt.h +106 -0
  42. libesedb_python-20260704/esedbtools/esedbtools_i18n.h +48 -0
  43. libesedb_python-20260704/esedbtools/esedbtools_libbfio.h +58 -0
  44. libesedb_python-20260704/esedbtools/esedbtools_libcdata.h +54 -0
  45. libesedb_python-20260704/esedbtools/esedbtools_libcerror.h +50 -0
  46. libesedb_python-20260704/esedbtools/esedbtools_libcfile.h +50 -0
  47. libesedb_python-20260704/esedbtools/esedbtools_libclocale.h +50 -0
  48. libesedb_python-20260704/esedbtools/esedbtools_libcnotify.h +50 -0
  49. libesedb_python-20260704/esedbtools/esedbtools_libcpath.h +48 -0
  50. libesedb_python-20260704/esedbtools/esedbtools_libesedb.h +30 -0
  51. libesedb_python-20260704/esedbtools/esedbtools_libfdatetime.h +56 -0
  52. libesedb_python-20260704/esedbtools/esedbtools_libfguid.h +49 -0
  53. libesedb_python-20260704/esedbtools/esedbtools_libfmapi.h +60 -0
  54. libesedb_python-20260704/esedbtools/esedbtools_libfvalue.h +59 -0
  55. libesedb_python-20260704/esedbtools/esedbtools_libfwnt.h +58 -0
  56. libesedb_python-20260704/esedbtools/esedbtools_libuna.h +60 -0
  57. libesedb_python-20260704/esedbtools/esedbtools_output.c +203 -0
  58. libesedb_python-20260704/esedbtools/esedbtools_output.h +55 -0
  59. libesedb_python-20260704/esedbtools/esedbtools_signal.c +262 -0
  60. libesedb_python-20260704/esedbtools/esedbtools_signal.h +72 -0
  61. libesedb_python-20260704/esedbtools/esedbtools_system_string.c +121 -0
  62. libesedb_python-20260704/esedbtools/esedbtools_system_string.h +46 -0
  63. libesedb_python-20260704/esedbtools/esedbtools_unused.h +50 -0
  64. libesedb_python-20260704/esedbtools/export.c +875 -0
  65. libesedb_python-20260704/esedbtools/export.h +75 -0
  66. libesedb_python-20260704/esedbtools/export_handle.c +4550 -0
  67. libesedb_python-20260704/esedbtools/export_handle.h +233 -0
  68. libesedb_python-20260704/esedbtools/info_handle.c +1507 -0
  69. libesedb_python-20260704/esedbtools/info_handle.h +116 -0
  70. libesedb_python-20260704/esedbtools/log_handle.c +276 -0
  71. libesedb_python-20260704/esedbtools/log_handle.h +71 -0
  72. libesedb_python-20260704/esedbtools/srumdb.c +273 -0
  73. libesedb_python-20260704/esedbtools/srumdb.h +48 -0
  74. libesedb_python-20260704/esedbtools/webcache.c +514 -0
  75. libesedb_python-20260704/esedbtools/webcache.h +54 -0
  76. libesedb_python-20260704/esedbtools/windows_search.c +3152 -0
  77. libesedb_python-20260704/esedbtools/windows_search.h +106 -0
  78. libesedb_python-20260704/esedbtools/windows_search_compression.c +278 -0
  79. libesedb_python-20260704/esedbtools/windows_search_compression.h +53 -0
  80. libesedb_python-20260704/esedbtools/windows_security.c +995 -0
  81. libesedb_python-20260704/esedbtools/windows_security.h +68 -0
  82. libesedb_python-20260704/include/Makefile.in +875 -0
  83. libesedb_python-20260704/include/libesedb/codepage.h +122 -0
  84. libesedb_python-20260704/include/libesedb/definitions.h +103 -0
  85. libesedb_python-20260704/include/libesedb/definitions.h.in +103 -0
  86. libesedb_python-20260704/include/libesedb/error.h +291 -0
  87. libesedb_python-20260704/include/libesedb/extern.h +47 -0
  88. libesedb_python-20260704/include/libesedb/features.h +50 -0
  89. libesedb_python-20260704/include/libesedb/features.h.in +50 -0
  90. libesedb_python-20260704/include/libesedb/types.h +217 -0
  91. libesedb_python-20260704/include/libesedb/types.h.in +217 -0
  92. libesedb_python-20260704/include/libesedb.h +1324 -0
  93. libesedb_python-20260704/include/libesedb.h.in +1324 -0
  94. libesedb_python-20260704/libbfio/Makefile.in +976 -0
  95. libesedb_python-20260704/libbfio/libbfio_codepage.h +90 -0
  96. libesedb_python-20260704/libbfio/libbfio_definitions.h +89 -0
  97. libesedb_python-20260704/libbfio/libbfio_error.c +111 -0
  98. libesedb_python-20260704/libbfio/libbfio_error.h +74 -0
  99. libesedb_python-20260704/libbfio/libbfio_extern.h +53 -0
  100. libesedb_python-20260704/libbfio/libbfio_file.c +444 -0
  101. libesedb_python-20260704/libbfio/libbfio_file.h +90 -0
  102. libesedb_python-20260704/libbfio/libbfio_file_io_handle.c +1198 -0
  103. libesedb_python-20260704/libbfio/libbfio_file_io_handle.h +152 -0
  104. libesedb_python-20260704/libbfio/libbfio_file_pool.c +494 -0
  105. libesedb_python-20260704/libbfio/libbfio_file_pool.h +81 -0
  106. libesedb_python-20260704/libbfio/libbfio_file_range.c +468 -0
  107. libesedb_python-20260704/libbfio/libbfio_file_range.h +104 -0
  108. libesedb_python-20260704/libbfio/libbfio_file_range_io_handle.c +1158 -0
  109. libesedb_python-20260704/libbfio/libbfio_file_range_io_handle.h +160 -0
  110. libesedb_python-20260704/libbfio/libbfio_handle.c +2708 -0
  111. libesedb_python-20260704/libbfio/libbfio_handle.h +363 -0
  112. libesedb_python-20260704/libbfio/libbfio_libcdata.h +54 -0
  113. libesedb_python-20260704/libbfio/libbfio_libcerror.h +50 -0
  114. libesedb_python-20260704/libbfio/libbfio_libcfile.h +50 -0
  115. libesedb_python-20260704/libbfio/libbfio_libclocale.h +50 -0
  116. libesedb_python-20260704/libbfio/libbfio_libcpath.h +48 -0
  117. libesedb_python-20260704/libbfio/libbfio_libcthreads.h +64 -0
  118. libesedb_python-20260704/libbfio/libbfio_libuna.h +60 -0
  119. libesedb_python-20260704/libbfio/libbfio_memory_range.c +205 -0
  120. libesedb_python-20260704/libbfio/libbfio_memory_range.h +60 -0
  121. libesedb_python-20260704/libbfio/libbfio_memory_range_io_handle.c +871 -0
  122. libesedb_python-20260704/libbfio/libbfio_memory_range_io_handle.h +129 -0
  123. libesedb_python-20260704/libbfio/libbfio_pool.c +3523 -0
  124. libesedb_python-20260704/libbfio/libbfio_pool.h +275 -0
  125. libesedb_python-20260704/libbfio/libbfio_support.c +93 -0
  126. libesedb_python-20260704/libbfio/libbfio_support.h +58 -0
  127. libesedb_python-20260704/libbfio/libbfio_system_string.c +1017 -0
  128. libesedb_python-20260704/libbfio/libbfio_system_string.h +95 -0
  129. libesedb_python-20260704/libbfio/libbfio_types.h +49 -0
  130. libesedb_python-20260704/libbfio/libbfio_unused.h +44 -0
  131. libesedb_python-20260704/libcdata/Makefile.in +955 -0
  132. libesedb_python-20260704/libcdata/libcdata_array.c +2015 -0
  133. libesedb_python-20260704/libcdata/libcdata_array.h +200 -0
  134. libesedb_python-20260704/libcdata/libcdata_btree.c +964 -0
  135. libesedb_python-20260704/libcdata/libcdata_btree.h +141 -0
  136. libesedb_python-20260704/libcdata/libcdata_btree_node.c +1607 -0
  137. libesedb_python-20260704/libcdata/libcdata_btree_node.h +101 -0
  138. libesedb_python-20260704/libcdata/libcdata_btree_values_list.c +217 -0
  139. libesedb_python-20260704/libcdata/libcdata_btree_values_list.h +55 -0
  140. libesedb_python-20260704/libcdata/libcdata_definitions.h +81 -0
  141. libesedb_python-20260704/libcdata/libcdata_error.c +111 -0
  142. libesedb_python-20260704/libcdata/libcdata_error.h +74 -0
  143. libesedb_python-20260704/libcdata/libcdata_extern.h +53 -0
  144. libesedb_python-20260704/libcdata/libcdata_libcerror.h +50 -0
  145. libesedb_python-20260704/libcdata/libcdata_libcthreads.h +64 -0
  146. libesedb_python-20260704/libcdata/libcdata_list.c +2906 -0
  147. libesedb_python-20260704/libcdata/libcdata_list.h +235 -0
  148. libesedb_python-20260704/libcdata/libcdata_list_element.c +926 -0
  149. libesedb_python-20260704/libcdata/libcdata_list_element.h +142 -0
  150. libesedb_python-20260704/libcdata/libcdata_range_list.c +4922 -0
  151. libesedb_python-20260704/libcdata/libcdata_range_list.h +382 -0
  152. libesedb_python-20260704/libcdata/libcdata_range_list_value.c +429 -0
  153. libesedb_python-20260704/libcdata/libcdata_range_list_value.h +100 -0
  154. libesedb_python-20260704/libcdata/libcdata_support.c +39 -0
  155. libesedb_python-20260704/libcdata/libcdata_support.h +47 -0
  156. libesedb_python-20260704/libcdata/libcdata_tree_node.c +4271 -0
  157. libesedb_python-20260704/libcdata/libcdata_tree_node.h +308 -0
  158. libesedb_python-20260704/libcdata/libcdata_types.h +57 -0
  159. libesedb_python-20260704/libcdata/libcdata_unused.h +44 -0
  160. libesedb_python-20260704/libcerror/Makefile.in +897 -0
  161. libesedb_python-20260704/libcerror/libcerror_definitions.h +326 -0
  162. libesedb_python-20260704/libcerror/libcerror_error.c +827 -0
  163. libesedb_python-20260704/libcerror/libcerror_error.h +125 -0
  164. libesedb_python-20260704/libcerror/libcerror_extern.h +53 -0
  165. libesedb_python-20260704/libcerror/libcerror_support.c +39 -0
  166. libesedb_python-20260704/libcerror/libcerror_support.h +47 -0
  167. libesedb_python-20260704/libcerror/libcerror_system.c +569 -0
  168. libesedb_python-20260704/libcerror/libcerror_system.h +78 -0
  169. libesedb_python-20260704/libcerror/libcerror_types.h +51 -0
  170. libesedb_python-20260704/libcerror/libcerror_unused.h +44 -0
  171. libesedb_python-20260704/libcfile/Makefile.in +924 -0
  172. libesedb_python-20260704/libcfile/libcfile_definitions.h +101 -0
  173. libesedb_python-20260704/libcfile/libcfile_error.c +111 -0
  174. libesedb_python-20260704/libcfile/libcfile_error.h +74 -0
  175. libesedb_python-20260704/libcfile/libcfile_extern.h +53 -0
  176. libesedb_python-20260704/libcfile/libcfile_file.c +5022 -0
  177. libesedb_python-20260704/libcfile/libcfile_file.h +277 -0
  178. libesedb_python-20260704/libcfile/libcfile_libcerror.h +50 -0
  179. libesedb_python-20260704/libcfile/libcfile_libclocale.h +50 -0
  180. libesedb_python-20260704/libcfile/libcfile_libcnotify.h +50 -0
  181. libesedb_python-20260704/libcfile/libcfile_libuna.h +60 -0
  182. libesedb_python-20260704/libcfile/libcfile_notify.c +120 -0
  183. libesedb_python-20260704/libcfile/libcfile_notify.h +63 -0
  184. libesedb_python-20260704/libcfile/libcfile_support.c +1171 -0
  185. libesedb_python-20260704/libcfile/libcfile_support.h +98 -0
  186. libesedb_python-20260704/libcfile/libcfile_system_string.c +1017 -0
  187. libesedb_python-20260704/libcfile/libcfile_system_string.h +95 -0
  188. libesedb_python-20260704/libcfile/libcfile_types.h +47 -0
  189. libesedb_python-20260704/libcfile/libcfile_unused.h +44 -0
  190. libesedb_python-20260704/libcfile/libcfile_winapi.c +815 -0
  191. libesedb_python-20260704/libcfile/libcfile_winapi.h +122 -0
  192. libesedb_python-20260704/libclocale/Makefile.in +907 -0
  193. libesedb_python-20260704/libclocale/libclocale_codepage.c +950 -0
  194. libesedb_python-20260704/libclocale/libclocale_codepage.h +73 -0
  195. libesedb_python-20260704/libclocale/libclocale_definitions.h +106 -0
  196. libesedb_python-20260704/libclocale/libclocale_extern.h +53 -0
  197. libesedb_python-20260704/libclocale/libclocale_libcerror.h +50 -0
  198. libesedb_python-20260704/libclocale/libclocale_locale.c +494 -0
  199. libesedb_python-20260704/libclocale/libclocale_locale.h +66 -0
  200. libesedb_python-20260704/libclocale/libclocale_support.c +130 -0
  201. libesedb_python-20260704/libclocale/libclocale_support.h +55 -0
  202. libesedb_python-20260704/libclocale/libclocale_unused.h +44 -0
  203. libesedb_python-20260704/libclocale/libclocale_wide_string.c +69 -0
  204. libesedb_python-20260704/libclocale/libclocale_wide_string.h +54 -0
  205. libesedb_python-20260704/libcnotify/Makefile.in +905 -0
  206. libesedb_python-20260704/libcnotify/libcnotify_definitions.h +54 -0
  207. libesedb_python-20260704/libcnotify/libcnotify_extern.h +53 -0
  208. libesedb_python-20260704/libcnotify/libcnotify_libcerror.h +50 -0
  209. libesedb_python-20260704/libcnotify/libcnotify_print.c +386 -0
  210. libesedb_python-20260704/libcnotify/libcnotify_print.h +68 -0
  211. libesedb_python-20260704/libcnotify/libcnotify_stream.c +182 -0
  212. libesedb_python-20260704/libcnotify/libcnotify_stream.h +59 -0
  213. libesedb_python-20260704/libcnotify/libcnotify_support.c +39 -0
  214. libesedb_python-20260704/libcnotify/libcnotify_support.h +49 -0
  215. libesedb_python-20260704/libcnotify/libcnotify_unused.h +44 -0
  216. libesedb_python-20260704/libcnotify/libcnotify_verbose.c +38 -0
  217. libesedb_python-20260704/libcnotify/libcnotify_verbose.h +46 -0
  218. libesedb_python-20260704/libcpath/Makefile.in +909 -0
  219. libesedb_python-20260704/libcpath/libcpath_definitions.h +79 -0
  220. libesedb_python-20260704/libcpath/libcpath_error.c +111 -0
  221. libesedb_python-20260704/libcpath/libcpath_error.h +74 -0
  222. libesedb_python-20260704/libcpath/libcpath_extern.h +53 -0
  223. libesedb_python-20260704/libcpath/libcpath_libcerror.h +50 -0
  224. libesedb_python-20260704/libcpath/libcpath_libclocale.h +50 -0
  225. libesedb_python-20260704/libcpath/libcpath_libcsplit.h +52 -0
  226. libesedb_python-20260704/libcpath/libcpath_libuna.h +60 -0
  227. libesedb_python-20260704/libcpath/libcpath_path.c +7508 -0
  228. libesedb_python-20260704/libcpath/libcpath_path.h +293 -0
  229. libesedb_python-20260704/libcpath/libcpath_support.c +93 -0
  230. libesedb_python-20260704/libcpath/libcpath_support.h +58 -0
  231. libesedb_python-20260704/libcpath/libcpath_system_string.c +1017 -0
  232. libesedb_python-20260704/libcpath/libcpath_system_string.h +95 -0
  233. libesedb_python-20260704/libcpath/libcpath_unused.h +44 -0
  234. libesedb_python-20260704/libcsplit/Makefile.in +922 -0
  235. libesedb_python-20260704/libcsplit/libcsplit_definitions.h +47 -0
  236. libesedb_python-20260704/libcsplit/libcsplit_error.c +111 -0
  237. libesedb_python-20260704/libcsplit/libcsplit_error.h +74 -0
  238. libesedb_python-20260704/libcsplit/libcsplit_extern.h +53 -0
  239. libesedb_python-20260704/libcsplit/libcsplit_libcerror.h +50 -0
  240. libesedb_python-20260704/libcsplit/libcsplit_narrow_split_string.c +547 -0
  241. libesedb_python-20260704/libcsplit/libcsplit_narrow_split_string.h +107 -0
  242. libesedb_python-20260704/libcsplit/libcsplit_narrow_string.c +288 -0
  243. libesedb_python-20260704/libcsplit/libcsplit_narrow_string.h +49 -0
  244. libesedb_python-20260704/libcsplit/libcsplit_support.c +39 -0
  245. libesedb_python-20260704/libcsplit/libcsplit_support.h +47 -0
  246. libesedb_python-20260704/libcsplit/libcsplit_types.h +49 -0
  247. libesedb_python-20260704/libcsplit/libcsplit_unused.h +44 -0
  248. libesedb_python-20260704/libcsplit/libcsplit_wide_split_string.c +551 -0
  249. libesedb_python-20260704/libcsplit/libcsplit_wide_split_string.h +111 -0
  250. libesedb_python-20260704/libcsplit/libcsplit_wide_string.c +292 -0
  251. libesedb_python-20260704/libcsplit/libcsplit_wide_string.h +53 -0
  252. libesedb_python-20260704/libcthreads/Makefile.in +957 -0
  253. libesedb_python-20260704/libcthreads/libcthreads_condition.c +735 -0
  254. libesedb_python-20260704/libcthreads/libcthreads_condition.h +120 -0
  255. libesedb_python-20260704/libcthreads/libcthreads_definitions.h +84 -0
  256. libesedb_python-20260704/libcthreads/libcthreads_error.c +111 -0
  257. libesedb_python-20260704/libcthreads/libcthreads_error.h +74 -0
  258. libesedb_python-20260704/libcthreads/libcthreads_extern.h +53 -0
  259. libesedb_python-20260704/libcthreads/libcthreads_libcerror.h +50 -0
  260. libesedb_python-20260704/libcthreads/libcthreads_lock.c +391 -0
  261. libesedb_python-20260704/libcthreads/libcthreads_lock.h +88 -0
  262. libesedb_python-20260704/libcthreads/libcthreads_mutex.c +601 -0
  263. libesedb_python-20260704/libcthreads/libcthreads_mutex.h +98 -0
  264. libesedb_python-20260704/libcthreads/libcthreads_queue.c +1150 -0
  265. libesedb_python-20260704/libcthreads/libcthreads_queue.h +136 -0
  266. libesedb_python-20260704/libcthreads/libcthreads_read_write_lock.c +690 -0
  267. libesedb_python-20260704/libcthreads/libcthreads_read_write_lock.h +119 -0
  268. libesedb_python-20260704/libcthreads/libcthreads_repeating_thread.c +683 -0
  269. libesedb_python-20260704/libcthreads/libcthreads_repeating_thread.h +123 -0
  270. libesedb_python-20260704/libcthreads/libcthreads_support.c +39 -0
  271. libesedb_python-20260704/libcthreads/libcthreads_support.h +47 -0
  272. libesedb_python-20260704/libcthreads/libcthreads_thread.c +411 -0
  273. libesedb_python-20260704/libcthreads/libcthreads_thread.h +95 -0
  274. libesedb_python-20260704/libcthreads/libcthreads_thread_attributes.c +149 -0
  275. libesedb_python-20260704/libcthreads/libcthreads_thread_attributes.h +78 -0
  276. libesedb_python-20260704/libcthreads/libcthreads_thread_pool.c +1725 -0
  277. libesedb_python-20260704/libcthreads/libcthreads_thread_pool.h +177 -0
  278. libesedb_python-20260704/libcthreads/libcthreads_types.h +63 -0
  279. libesedb_python-20260704/libcthreads/libcthreads_unused.h +44 -0
  280. libesedb_python-20260704/libesedb/Makefile.in +1213 -0
  281. libesedb_python-20260704/libesedb/esedb_file_header.h +352 -0
  282. libesedb_python-20260704/libesedb/esedb_page.h +146 -0
  283. libesedb_python-20260704/libesedb/esedb_page_values.h +273 -0
  284. libesedb_python-20260704/libesedb/libesedb.c +84 -0
  285. libesedb_python-20260704/libesedb/libesedb.rc +38 -0
  286. libesedb_python-20260704/libesedb/libesedb.rc.in +38 -0
  287. libesedb_python-20260704/libesedb/libesedb_block_descriptor.c +131 -0
  288. libesedb_python-20260704/libesedb/libesedb_block_descriptor.h +56 -0
  289. libesedb_python-20260704/libesedb/libesedb_block_tree.c +474 -0
  290. libesedb_python-20260704/libesedb/libesedb_block_tree.h +83 -0
  291. libesedb_python-20260704/libesedb/libesedb_block_tree_node.c +613 -0
  292. libesedb_python-20260704/libesedb/libesedb_block_tree_node.h +109 -0
  293. libesedb_python-20260704/libesedb/libesedb_catalog.c +1385 -0
  294. libesedb_python-20260704/libesedb/libesedb_catalog.h +126 -0
  295. libesedb_python-20260704/libesedb/libesedb_catalog_definition.c +1897 -0
  296. libesedb_python-20260704/libesedb/libesedb_catalog_definition.h +204 -0
  297. libesedb_python-20260704/libesedb/libesedb_checksum.c +595 -0
  298. libesedb_python-20260704/libesedb/libesedb_checksum.h +55 -0
  299. libesedb_python-20260704/libesedb/libesedb_codepage.c +108 -0
  300. libesedb_python-20260704/libesedb/libesedb_codepage.h +116 -0
  301. libesedb_python-20260704/libesedb/libesedb_column.c +471 -0
  302. libesedb_python-20260704/libesedb/libesedb_column.h +105 -0
  303. libesedb_python-20260704/libesedb/libesedb_column_type.c +91 -0
  304. libesedb_python-20260704/libesedb/libesedb_column_type.h +64 -0
  305. libesedb_python-20260704/libesedb/libesedb_compression.c +1328 -0
  306. libesedb_python-20260704/libesedb/libesedb_compression.h +104 -0
  307. libesedb_python-20260704/libesedb/libesedb_data_definition.c +2042 -0
  308. libesedb_python-20260704/libesedb/libesedb_data_definition.h +118 -0
  309. libesedb_python-20260704/libesedb/libesedb_data_segment.c +406 -0
  310. libesedb_python-20260704/libesedb/libesedb_data_segment.h +86 -0
  311. libesedb_python-20260704/libesedb/libesedb_database.c +605 -0
  312. libesedb_python-20260704/libesedb/libesedb_database.h +80 -0
  313. libesedb_python-20260704/libesedb/libesedb_debug.c +772 -0
  314. libesedb_python-20260704/libesedb/libesedb_debug.h +85 -0
  315. libesedb_python-20260704/libesedb/libesedb_definitions.h +258 -0
  316. libesedb_python-20260704/libesedb/libesedb_definitions.h.in +258 -0
  317. libesedb_python-20260704/libesedb/libesedb_error.c +111 -0
  318. libesedb_python-20260704/libesedb/libesedb_error.h +74 -0
  319. libesedb_python-20260704/libesedb/libesedb_extern.h +53 -0
  320. libesedb_python-20260704/libesedb/libesedb_file.c +2168 -0
  321. libesedb_python-20260704/libesedb/libesedb_file.h +198 -0
  322. libesedb_python-20260704/libesedb/libesedb_file_header.c +800 -0
  323. libesedb_python-20260704/libesedb/libesedb_file_header.h +93 -0
  324. libesedb_python-20260704/libesedb/libesedb_i18n.c +65 -0
  325. libesedb_python-20260704/libesedb/libesedb_i18n.h +55 -0
  326. libesedb_python-20260704/libesedb/libesedb_index.c +744 -0
  327. libesedb_python-20260704/libesedb/libesedb_index.h +166 -0
  328. libesedb_python-20260704/libesedb/libesedb_io_handle.c +310 -0
  329. libesedb_python-20260704/libesedb/libesedb_io_handle.h +130 -0
  330. libesedb_python-20260704/libesedb/libesedb_lcid.c +474 -0
  331. libesedb_python-20260704/libesedb/libesedb_lcid.h +64 -0
  332. libesedb_python-20260704/libesedb/libesedb_leaf_page_descriptor.c +177 -0
  333. libesedb_python-20260704/libesedb/libesedb_leaf_page_descriptor.h +69 -0
  334. libesedb_python-20260704/libesedb/libesedb_libbfio.h +58 -0
  335. libesedb_python-20260704/libesedb/libesedb_libcdata.h +54 -0
  336. libesedb_python-20260704/libesedb/libesedb_libcerror.h +50 -0
  337. libesedb_python-20260704/libesedb/libesedb_libclocale.h +50 -0
  338. libesedb_python-20260704/libesedb/libesedb_libcnotify.h +50 -0
  339. libesedb_python-20260704/libesedb/libesedb_libfcache.h +50 -0
  340. libesedb_python-20260704/libesedb/libesedb_libfdata.h +54 -0
  341. libesedb_python-20260704/libesedb/libesedb_libfvalue.h +60 -0
  342. libesedb_python-20260704/libesedb/libesedb_libfwnt.h +58 -0
  343. libesedb_python-20260704/libesedb/libesedb_libuna.h +60 -0
  344. libesedb_python-20260704/libesedb/libesedb_long_value.c +1379 -0
  345. libesedb_python-20260704/libesedb/libesedb_long_value.h +154 -0
  346. libesedb_python-20260704/libesedb/libesedb_multi_value.c +1606 -0
  347. libesedb_python-20260704/libesedb/libesedb_multi_value.h +213 -0
  348. libesedb_python-20260704/libesedb/libesedb_notify.c +120 -0
  349. libesedb_python-20260704/libesedb/libesedb_notify.h +63 -0
  350. libesedb_python-20260704/libesedb/libesedb_page.c +1669 -0
  351. libesedb_python-20260704/libesedb/libesedb_page.h +156 -0
  352. libesedb_python-20260704/libesedb/libesedb_page_header.c +593 -0
  353. libesedb_python-20260704/libesedb/libesedb_page_header.h +116 -0
  354. libesedb_python-20260704/libesedb/libesedb_page_tree.c +3290 -0
  355. libesedb_python-20260704/libesedb/libesedb_page_tree.h +201 -0
  356. libesedb_python-20260704/libesedb/libesedb_page_tree_key.c +697 -0
  357. libesedb_python-20260704/libesedb/libesedb_page_tree_key.h +81 -0
  358. libesedb_python-20260704/libesedb/libesedb_page_tree_value.c +310 -0
  359. libesedb_python-20260704/libesedb/libesedb_page_tree_value.h +79 -0
  360. libesedb_python-20260704/libesedb/libesedb_page_value.c +133 -0
  361. libesedb_python-20260704/libesedb/libesedb_page_value.h +68 -0
  362. libesedb_python-20260704/libesedb/libesedb_record.c +3907 -0
  363. libesedb_python-20260704/libesedb/libesedb_record.h +343 -0
  364. libesedb_python-20260704/libesedb/libesedb_record_value.c +506 -0
  365. libesedb_python-20260704/libesedb/libesedb_record_value.h +62 -0
  366. libesedb_python-20260704/libesedb/libesedb_root_page_header.c +288 -0
  367. libesedb_python-20260704/libesedb/libesedb_root_page_header.h +70 -0
  368. libesedb_python-20260704/libesedb/libesedb_space_tree.c +862 -0
  369. libesedb_python-20260704/libesedb/libesedb_space_tree.h +79 -0
  370. libesedb_python-20260704/libesedb/libesedb_space_tree_value.c +209 -0
  371. libesedb_python-20260704/libesedb/libesedb_space_tree_value.h +62 -0
  372. libesedb_python-20260704/libesedb/libesedb_support.c +430 -0
  373. libesedb_python-20260704/libesedb/libesedb_support.h +82 -0
  374. libesedb_python-20260704/libesedb/libesedb_table.c +1564 -0
  375. libesedb_python-20260704/libesedb/libesedb_table.h +204 -0
  376. libesedb_python-20260704/libesedb/libesedb_table_definition.c +682 -0
  377. libesedb_python-20260704/libesedb/libesedb_table_definition.h +117 -0
  378. libesedb_python-20260704/libesedb/libesedb_types.h +59 -0
  379. libesedb_python-20260704/libesedb/libesedb_unused.h +44 -0
  380. libesedb_python-20260704/libesedb/libesedb_value_data_handle.c +223 -0
  381. libesedb_python-20260704/libesedb/libesedb_value_data_handle.h +49 -0
  382. libesedb_python-20260704/libesedb.spec +100 -0
  383. libesedb_python-20260704/libfcache/Makefile.in +918 -0
  384. libesedb_python-20260704/libfcache/libfcache_cache.c +1118 -0
  385. libesedb_python-20260704/libfcache/libfcache_cache.h +149 -0
  386. libesedb_python-20260704/libfcache/libfcache_cache_value.c +502 -0
  387. libesedb_python-20260704/libfcache/libfcache_cache_value.h +132 -0
  388. libesedb_python-20260704/libfcache/libfcache_date_time.c +92 -0
  389. libesedb_python-20260704/libfcache/libfcache_date_time.h +45 -0
  390. libesedb_python-20260704/libfcache/libfcache_definitions.h +58 -0
  391. libesedb_python-20260704/libfcache/libfcache_error.c +111 -0
  392. libesedb_python-20260704/libfcache/libfcache_error.h +74 -0
  393. libesedb_python-20260704/libfcache/libfcache_extern.h +40 -0
  394. libesedb_python-20260704/libfcache/libfcache_libcdata.h +54 -0
  395. libesedb_python-20260704/libfcache/libfcache_libcerror.h +50 -0
  396. libesedb_python-20260704/libfcache/libfcache_support.c +41 -0
  397. libesedb_python-20260704/libfcache/libfcache_support.h +47 -0
  398. libesedb_python-20260704/libfcache/libfcache_types.h +49 -0
  399. libesedb_python-20260704/libfcache/libfcache_unused.h +44 -0
  400. libesedb_python-20260704/libfdata/Makefile.in +971 -0
  401. libesedb_python-20260704/libfdata/libfdata_area.c +1482 -0
  402. libesedb_python-20260704/libfdata/libfdata_area.h +278 -0
  403. libesedb_python-20260704/libfdata/libfdata_cache.c +59 -0
  404. libesedb_python-20260704/libfdata/libfdata_cache.h +56 -0
  405. libesedb_python-20260704/libfdata/libfdata_definitions.h +249 -0
  406. libesedb_python-20260704/libfdata/libfdata_error.c +111 -0
  407. libesedb_python-20260704/libfdata/libfdata_error.h +74 -0
  408. libesedb_python-20260704/libfdata/libfdata_extern.h +40 -0
  409. libesedb_python-20260704/libfdata/libfdata_libcdata.h +54 -0
  410. libesedb_python-20260704/libfdata/libfdata_libcerror.h +50 -0
  411. libesedb_python-20260704/libfdata/libfdata_libcnotify.h +50 -0
  412. libesedb_python-20260704/libfdata/libfdata_libfcache.h +50 -0
  413. libesedb_python-20260704/libfdata/libfdata_list.c +4426 -0
  414. libesedb_python-20260704/libfdata/libfdata_list.h +452 -0
  415. libesedb_python-20260704/libfdata/libfdata_list_element.c +824 -0
  416. libesedb_python-20260704/libfdata/libfdata_list_element.h +159 -0
  417. libesedb_python-20260704/libfdata/libfdata_mapped_range.c +312 -0
  418. libesedb_python-20260704/libfdata/libfdata_mapped_range.h +77 -0
  419. libesedb_python-20260704/libfdata/libfdata_notify.c +120 -0
  420. libesedb_python-20260704/libfdata/libfdata_notify.h +63 -0
  421. libesedb_python-20260704/libfdata/libfdata_range.c +358 -0
  422. libesedb_python-20260704/libfdata/libfdata_range.h +94 -0
  423. libesedb_python-20260704/libfdata/libfdata_range_list.c +1196 -0
  424. libesedb_python-20260704/libfdata/libfdata_range_list.h +214 -0
  425. libesedb_python-20260704/libfdata/libfdata_segments_array.c +914 -0
  426. libesedb_python-20260704/libfdata/libfdata_segments_array.h +94 -0
  427. libesedb_python-20260704/libfdata/libfdata_stream.c +2582 -0
  428. libesedb_python-20260704/libfdata/libfdata_stream.h +363 -0
  429. libesedb_python-20260704/libfdata/libfdata_support.c +41 -0
  430. libesedb_python-20260704/libfdata/libfdata_support.h +47 -0
  431. libesedb_python-20260704/libfdata/libfdata_types.h +59 -0
  432. libesedb_python-20260704/libfdata/libfdata_unused.h +44 -0
  433. libesedb_python-20260704/libfdata/libfdata_vector.c +1932 -0
  434. libesedb_python-20260704/libfdata/libfdata_vector.h +295 -0
  435. libesedb_python-20260704/libfdatetime/Makefile.in +949 -0
  436. libesedb_python-20260704/libfdatetime/libfdatetime_date_time_values.c +1906 -0
  437. libesedb_python-20260704/libfdatetime/libfdatetime_date_time_values.h +121 -0
  438. libesedb_python-20260704/libfdatetime/libfdatetime_definitions.h +121 -0
  439. libesedb_python-20260704/libfdatetime/libfdatetime_error.c +111 -0
  440. libesedb_python-20260704/libfdatetime/libfdatetime_error.h +74 -0
  441. libesedb_python-20260704/libfdatetime/libfdatetime_extern.h +40 -0
  442. libesedb_python-20260704/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
  443. libesedb_python-20260704/libfdatetime/libfdatetime_fat_date_time.h +172 -0
  444. libesedb_python-20260704/libfdatetime/libfdatetime_filetime.c +1465 -0
  445. libesedb_python-20260704/libfdatetime/libfdatetime_filetime.h +177 -0
  446. libesedb_python-20260704/libfdatetime/libfdatetime_floatingtime.c +1333 -0
  447. libesedb_python-20260704/libfdatetime/libfdatetime_floatingtime.h +168 -0
  448. libesedb_python-20260704/libfdatetime/libfdatetime_hfs_time.c +1329 -0
  449. libesedb_python-20260704/libfdatetime/libfdatetime_hfs_time.h +166 -0
  450. libesedb_python-20260704/libfdatetime/libfdatetime_libcerror.h +50 -0
  451. libesedb_python-20260704/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
  452. libesedb_python-20260704/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
  453. libesedb_python-20260704/libfdatetime/libfdatetime_posix_time.c +1918 -0
  454. libesedb_python-20260704/libfdatetime/libfdatetime_posix_time.h +189 -0
  455. libesedb_python-20260704/libfdatetime/libfdatetime_support.c +41 -0
  456. libesedb_python-20260704/libfdatetime/libfdatetime_support.h +47 -0
  457. libesedb_python-20260704/libfdatetime/libfdatetime_systemtime.c +1779 -0
  458. libesedb_python-20260704/libfdatetime/libfdatetime_systemtime.h +180 -0
  459. libesedb_python-20260704/libfdatetime/libfdatetime_types.h +63 -0
  460. libesedb_python-20260704/libfdatetime/libfdatetime_unused.h +44 -0
  461. libesedb_python-20260704/libfguid/Makefile.in +899 -0
  462. libesedb_python-20260704/libfguid/libfguid_definitions.h +84 -0
  463. libesedb_python-20260704/libfguid/libfguid_error.c +111 -0
  464. libesedb_python-20260704/libfguid/libfguid_error.h +74 -0
  465. libesedb_python-20260704/libfguid/libfguid_extern.h +40 -0
  466. libesedb_python-20260704/libfguid/libfguid_identifier.c +2524 -0
  467. libesedb_python-20260704/libfguid/libfguid_identifier.h +204 -0
  468. libesedb_python-20260704/libfguid/libfguid_libcerror.h +50 -0
  469. libesedb_python-20260704/libfguid/libfguid_support.c +41 -0
  470. libesedb_python-20260704/libfguid/libfguid_support.h +47 -0
  471. libesedb_python-20260704/libfguid/libfguid_types.h +47 -0
  472. libesedb_python-20260704/libfguid/libfguid_unused.h +44 -0
  473. libesedb_python-20260704/libfmapi/Makefile.in +978 -0
  474. libesedb_python-20260704/libfmapi/libfmapi_checksum.c +204 -0
  475. libesedb_python-20260704/libfmapi/libfmapi_checksum.h +63 -0
  476. libesedb_python-20260704/libfmapi/libfmapi_class_identifier.c +131 -0
  477. libesedb_python-20260704/libfmapi/libfmapi_class_identifier.h +114 -0
  478. libesedb_python-20260704/libfmapi/libfmapi_codepage.c +108 -0
  479. libesedb_python-20260704/libfmapi/libfmapi_codepage.h +63 -0
  480. libesedb_python-20260704/libfmapi/libfmapi_debug.c +5766 -0
  481. libesedb_python-20260704/libfmapi/libfmapi_debug.h +113 -0
  482. libesedb_python-20260704/libfmapi/libfmapi_definitions.h +73 -0
  483. libesedb_python-20260704/libfmapi/libfmapi_entry_identifier.c +414 -0
  484. libesedb_python-20260704/libfmapi/libfmapi_entry_identifier.h +78 -0
  485. libesedb_python-20260704/libfmapi/libfmapi_error.c +111 -0
  486. libesedb_python-20260704/libfmapi/libfmapi_error.h +74 -0
  487. libesedb_python-20260704/libfmapi/libfmapi_extern.h +40 -0
  488. libesedb_python-20260704/libfmapi/libfmapi_libcerror.h +50 -0
  489. libesedb_python-20260704/libfmapi/libfmapi_libcnotify.h +50 -0
  490. libesedb_python-20260704/libfmapi/libfmapi_libfdatetime.h +56 -0
  491. libesedb_python-20260704/libfmapi/libfmapi_libfguid.h +49 -0
  492. libesedb_python-20260704/libfmapi/libfmapi_libfwnt.h +58 -0
  493. libesedb_python-20260704/libfmapi/libfmapi_libuna.h +60 -0
  494. libesedb_python-20260704/libfmapi/libfmapi_lzfu.c +616 -0
  495. libesedb_python-20260704/libfmapi/libfmapi_lzfu.h +78 -0
  496. libesedb_python-20260704/libfmapi/libfmapi_one_off_entry_identifier.c +1474 -0
  497. libesedb_python-20260704/libfmapi/libfmapi_one_off_entry_identifier.h +190 -0
  498. libesedb_python-20260704/libfmapi/libfmapi_property_type.c +3113 -0
  499. libesedb_python-20260704/libfmapi/libfmapi_property_type.h +131 -0
  500. libesedb_python-20260704/libfmapi/libfmapi_service_provider_identifier.c +82 -0
  501. libesedb_python-20260704/libfmapi/libfmapi_service_provider_identifier.h +48 -0
  502. libesedb_python-20260704/libfmapi/libfmapi_support.c +39 -0
  503. libesedb_python-20260704/libfmapi/libfmapi_support.h +47 -0
  504. libesedb_python-20260704/libfmapi/libfmapi_types.h +49 -0
  505. libesedb_python-20260704/libfmapi/libfmapi_unused.h +44 -0
  506. libesedb_python-20260704/libfmapi/libfmapi_value_type.c +105 -0
  507. libesedb_python-20260704/libfmapi/libfmapi_value_type.h +64 -0
  508. libesedb_python-20260704/libfmapi/libfmapi_x400_object_identifier.h +73 -0
  509. libesedb_python-20260704/libfvalue/Makefile.in +1008 -0
  510. libesedb_python-20260704/libfvalue/libfvalue_binary_data.c +1390 -0
  511. libesedb_python-20260704/libfvalue/libfvalue_binary_data.h +114 -0
  512. libesedb_python-20260704/libfvalue/libfvalue_codepage.h +103 -0
  513. libesedb_python-20260704/libfvalue/libfvalue_data_handle.c +1661 -0
  514. libesedb_python-20260704/libfvalue/libfvalue_data_handle.h +195 -0
  515. libesedb_python-20260704/libfvalue/libfvalue_definitions.h +350 -0
  516. libesedb_python-20260704/libfvalue/libfvalue_error.c +111 -0
  517. libesedb_python-20260704/libfvalue/libfvalue_error.h +74 -0
  518. libesedb_python-20260704/libfvalue/libfvalue_extern.h +40 -0
  519. libesedb_python-20260704/libfvalue/libfvalue_filetime.c +113 -0
  520. libesedb_python-20260704/libfvalue/libfvalue_filetime.h +56 -0
  521. libesedb_python-20260704/libfvalue/libfvalue_floating_point.c +3472 -0
  522. libesedb_python-20260704/libfvalue/libfvalue_floating_point.h +246 -0
  523. libesedb_python-20260704/libfvalue/libfvalue_integer.c +2908 -0
  524. libesedb_python-20260704/libfvalue/libfvalue_integer.h +261 -0
  525. libesedb_python-20260704/libfvalue/libfvalue_libcdata.h +54 -0
  526. libesedb_python-20260704/libfvalue/libfvalue_libcerror.h +50 -0
  527. libesedb_python-20260704/libfvalue/libfvalue_libcnotify.h +50 -0
  528. libesedb_python-20260704/libfvalue/libfvalue_libfdatetime.h +58 -0
  529. libesedb_python-20260704/libfvalue/libfvalue_libfguid.h +51 -0
  530. libesedb_python-20260704/libfvalue/libfvalue_libfwnt.h +57 -0
  531. libesedb_python-20260704/libfvalue/libfvalue_libuna.h +60 -0
  532. libesedb_python-20260704/libfvalue/libfvalue_split_utf16_string.c +546 -0
  533. libesedb_python-20260704/libfvalue/libfvalue_split_utf16_string.h +114 -0
  534. libesedb_python-20260704/libfvalue/libfvalue_split_utf8_string.c +535 -0
  535. libesedb_python-20260704/libfvalue/libfvalue_split_utf8_string.h +114 -0
  536. libesedb_python-20260704/libfvalue/libfvalue_string.c +3070 -0
  537. libesedb_python-20260704/libfvalue/libfvalue_string.h +165 -0
  538. libesedb_python-20260704/libfvalue/libfvalue_support.c +41 -0
  539. libesedb_python-20260704/libfvalue/libfvalue_support.h +47 -0
  540. libesedb_python-20260704/libfvalue/libfvalue_table.c +1357 -0
  541. libesedb_python-20260704/libfvalue/libfvalue_table.h +136 -0
  542. libesedb_python-20260704/libfvalue/libfvalue_types.h +55 -0
  543. libesedb_python-20260704/libfvalue/libfvalue_unused.h +44 -0
  544. libesedb_python-20260704/libfvalue/libfvalue_utf16_string.c +300 -0
  545. libesedb_python-20260704/libfvalue/libfvalue_utf16_string.h +50 -0
  546. libesedb_python-20260704/libfvalue/libfvalue_utf8_string.c +300 -0
  547. libesedb_python-20260704/libfvalue/libfvalue_utf8_string.h +50 -0
  548. libesedb_python-20260704/libfvalue/libfvalue_value.c +5244 -0
  549. libesedb_python-20260704/libfvalue/libfvalue_value.h +753 -0
  550. libesedb_python-20260704/libfvalue/libfvalue_value_entry.c +210 -0
  551. libesedb_python-20260704/libfvalue/libfvalue_value_entry.h +65 -0
  552. libesedb_python-20260704/libfvalue/libfvalue_value_type.c +1183 -0
  553. libesedb_python-20260704/libfvalue/libfvalue_value_type.h +100 -0
  554. libesedb_python-20260704/libfwnt/Makefile.in +976 -0
  555. libesedb_python-20260704/libfwnt/libfwnt_access_control_entry.c +764 -0
  556. libesedb_python-20260704/libfwnt/libfwnt_access_control_entry.h +116 -0
  557. libesedb_python-20260704/libfwnt/libfwnt_access_control_list.c +516 -0
  558. libesedb_python-20260704/libfwnt/libfwnt_access_control_list.h +93 -0
  559. libesedb_python-20260704/libfwnt/libfwnt_bit_stream.c +308 -0
  560. libesedb_python-20260704/libfwnt/libfwnt_bit_stream.h +85 -0
  561. libesedb_python-20260704/libfwnt/libfwnt_debug.c +355 -0
  562. libesedb_python-20260704/libfwnt/libfwnt_debug.h +53 -0
  563. libesedb_python-20260704/libfwnt/libfwnt_definitions.h +112 -0
  564. libesedb_python-20260704/libfwnt/libfwnt_error.c +111 -0
  565. libesedb_python-20260704/libfwnt/libfwnt_error.h +74 -0
  566. libesedb_python-20260704/libfwnt/libfwnt_extern.h +40 -0
  567. libesedb_python-20260704/libfwnt/libfwnt_huffman_tree.c +600 -0
  568. libesedb_python-20260704/libfwnt/libfwnt_huffman_tree.h +79 -0
  569. libesedb_python-20260704/libfwnt/libfwnt_libcdata.h +54 -0
  570. libesedb_python-20260704/libfwnt/libfwnt_libcerror.h +50 -0
  571. libesedb_python-20260704/libfwnt/libfwnt_libcnotify.h +50 -0
  572. libesedb_python-20260704/libfwnt/libfwnt_locale_identifier.c +470 -0
  573. libesedb_python-20260704/libfwnt/libfwnt_locale_identifier.h +63 -0
  574. libesedb_python-20260704/libfwnt/libfwnt_lznt1.c +560 -0
  575. libesedb_python-20260704/libfwnt/libfwnt_lznt1.h +57 -0
  576. libesedb_python-20260704/libfwnt/libfwnt_lzx.c +1465 -0
  577. libesedb_python-20260704/libfwnt/libfwnt_lzx.h +95 -0
  578. libesedb_python-20260704/libfwnt/libfwnt_lzxpress.c +1041 -0
  579. libesedb_python-20260704/libfwnt/libfwnt_lzxpress.h +86 -0
  580. libesedb_python-20260704/libfwnt/libfwnt_notify.c +120 -0
  581. libesedb_python-20260704/libfwnt/libfwnt_notify.h +63 -0
  582. libesedb_python-20260704/libfwnt/libfwnt_security_descriptor.c +1027 -0
  583. libesedb_python-20260704/libfwnt/libfwnt_security_descriptor.h +116 -0
  584. libesedb_python-20260704/libfwnt/libfwnt_security_identifier.c +1176 -0
  585. libesedb_python-20260704/libfwnt/libfwnt_security_identifier.h +166 -0
  586. libesedb_python-20260704/libfwnt/libfwnt_support.c +41 -0
  587. libesedb_python-20260704/libfwnt/libfwnt_support.h +47 -0
  588. libesedb_python-20260704/libfwnt/libfwnt_types.h +53 -0
  589. libesedb_python-20260704/libfwnt/libfwnt_unused.h +44 -0
  590. libesedb_python-20260704/libmapidb/Makefile.in +909 -0
  591. libesedb_python-20260704/libuna/Makefile.in +1318 -0
  592. libesedb_python-20260704/libuna/libuna_base16_stream.c +1511 -0
  593. libesedb_python-20260704/libuna/libuna_base16_stream.h +93 -0
  594. libesedb_python-20260704/libuna/libuna_base32_stream.c +3035 -0
  595. libesedb_python-20260704/libuna/libuna_base32_stream.h +131 -0
  596. libesedb_python-20260704/libuna/libuna_base64_stream.c +2832 -0
  597. libesedb_python-20260704/libuna/libuna_base64_stream.h +131 -0
  598. libesedb_python-20260704/libuna/libuna_byte_stream.c +633 -0
  599. libesedb_python-20260704/libuna/libuna_byte_stream.h +104 -0
  600. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_10.c +73 -0
  601. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_10.h +48 -0
  602. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_13.c +82 -0
  603. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_13.h +48 -0
  604. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_14.c +66 -0
  605. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_14.h +51 -0
  606. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_15.c +46 -0
  607. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_15.h +45 -0
  608. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_16.c +78 -0
  609. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_16.h +57 -0
  610. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_2.c +82 -0
  611. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_2.h +51 -0
  612. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_3.c +79 -0
  613. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_3.h +57 -0
  614. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_4.c +80 -0
  615. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_4.h +48 -0
  616. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_5.c +62 -0
  617. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_5.h +45 -0
  618. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_6.c +58 -0
  619. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_6.h +45 -0
  620. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_7.c +66 -0
  621. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_7.h +48 -0
  622. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_8.c +61 -0
  623. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_8.h +48 -0
  624. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_9.c +50 -0
  625. libesedb_python-20260704/libuna/libuna_codepage_iso_8859_9.h +45 -0
  626. libesedb_python-20260704/libuna/libuna_codepage_koi8_r.c +392 -0
  627. libesedb_python-20260704/libuna/libuna_codepage_koi8_r.h +54 -0
  628. libesedb_python-20260704/libuna/libuna_codepage_koi8_u.c +424 -0
  629. libesedb_python-20260704/libuna/libuna_codepage_koi8_u.h +54 -0
  630. libesedb_python-20260704/libuna/libuna_codepage_mac_arabic.c +352 -0
  631. libesedb_python-20260704/libuna/libuna_codepage_mac_arabic.h +54 -0
  632. libesedb_python-20260704/libuna/libuna_codepage_mac_celtic.c +395 -0
  633. libesedb_python-20260704/libuna/libuna_codepage_mac_celtic.h +54 -0
  634. libesedb_python-20260704/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  635. libesedb_python-20260704/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  636. libesedb_python-20260704/libuna/libuna_codepage_mac_croatian.c +378 -0
  637. libesedb_python-20260704/libuna/libuna_codepage_mac_croatian.h +54 -0
  638. libesedb_python-20260704/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  639. libesedb_python-20260704/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  640. libesedb_python-20260704/libuna/libuna_codepage_mac_dingbats.c +347 -0
  641. libesedb_python-20260704/libuna/libuna_codepage_mac_dingbats.h +54 -0
  642. libesedb_python-20260704/libuna/libuna_codepage_mac_farsi.c +372 -0
  643. libesedb_python-20260704/libuna/libuna_codepage_mac_farsi.h +54 -0
  644. libesedb_python-20260704/libuna/libuna_codepage_mac_gaelic.c +437 -0
  645. libesedb_python-20260704/libuna/libuna_codepage_mac_gaelic.h +54 -0
  646. libesedb_python-20260704/libuna/libuna_codepage_mac_greek.c +305 -0
  647. libesedb_python-20260704/libuna/libuna_codepage_mac_greek.h +54 -0
  648. libesedb_python-20260704/libuna/libuna_codepage_mac_icelandic.c +381 -0
  649. libesedb_python-20260704/libuna/libuna_codepage_mac_icelandic.h +54 -0
  650. libesedb_python-20260704/libuna/libuna_codepage_mac_inuit.c +380 -0
  651. libesedb_python-20260704/libuna/libuna_codepage_mac_inuit.h +54 -0
  652. libesedb_python-20260704/libuna/libuna_codepage_mac_roman.c +387 -0
  653. libesedb_python-20260704/libuna/libuna_codepage_mac_roman.h +54 -0
  654. libesedb_python-20260704/libuna/libuna_codepage_mac_romanian.c +396 -0
  655. libesedb_python-20260704/libuna/libuna_codepage_mac_romanian.h +54 -0
  656. libesedb_python-20260704/libuna/libuna_codepage_mac_russian.c +317 -0
  657. libesedb_python-20260704/libuna/libuna_codepage_mac_russian.h +54 -0
  658. libesedb_python-20260704/libuna/libuna_codepage_mac_symbol.c +537 -0
  659. libesedb_python-20260704/libuna/libuna_codepage_mac_symbol.h +59 -0
  660. libesedb_python-20260704/libuna/libuna_codepage_mac_thai.c +330 -0
  661. libesedb_python-20260704/libuna/libuna_codepage_mac_thai.h +59 -0
  662. libesedb_python-20260704/libuna/libuna_codepage_mac_turkish.c +397 -0
  663. libesedb_python-20260704/libuna/libuna_codepage_mac_turkish.h +54 -0
  664. libesedb_python-20260704/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  665. libesedb_python-20260704/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  666. libesedb_python-20260704/libuna/libuna_codepage_windows_1250.c +313 -0
  667. libesedb_python-20260704/libuna/libuna_codepage_windows_1250.h +54 -0
  668. libesedb_python-20260704/libuna/libuna_codepage_windows_1251.c +301 -0
  669. libesedb_python-20260704/libuna/libuna_codepage_windows_1251.h +54 -0
  670. libesedb_python-20260704/libuna/libuna_codepage_windows_1252.c +287 -0
  671. libesedb_python-20260704/libuna/libuna_codepage_windows_1252.h +54 -0
  672. libesedb_python-20260704/libuna/libuna_codepage_windows_1253.c +291 -0
  673. libesedb_python-20260704/libuna/libuna_codepage_windows_1253.h +54 -0
  674. libesedb_python-20260704/libuna/libuna_codepage_windows_1254.c +348 -0
  675. libesedb_python-20260704/libuna/libuna_codepage_windows_1254.h +54 -0
  676. libesedb_python-20260704/libuna/libuna_codepage_windows_1255.c +328 -0
  677. libesedb_python-20260704/libuna/libuna_codepage_windows_1255.h +54 -0
  678. libesedb_python-20260704/libuna/libuna_codepage_windows_1256.c +372 -0
  679. libesedb_python-20260704/libuna/libuna_codepage_windows_1256.h +54 -0
  680. libesedb_python-20260704/libuna/libuna_codepage_windows_1257.c +303 -0
  681. libesedb_python-20260704/libuna/libuna_codepage_windows_1257.h +54 -0
  682. libesedb_python-20260704/libuna/libuna_codepage_windows_1258.c +349 -0
  683. libesedb_python-20260704/libuna/libuna_codepage_windows_1258.h +54 -0
  684. libesedb_python-20260704/libuna/libuna_codepage_windows_874.c +274 -0
  685. libesedb_python-20260704/libuna/libuna_codepage_windows_874.h +54 -0
  686. libesedb_python-20260704/libuna/libuna_codepage_windows_932.c +4913 -0
  687. libesedb_python-20260704/libuna/libuna_codepage_windows_932.h +59 -0
  688. libesedb_python-20260704/libuna/libuna_codepage_windows_936.c +7371 -0
  689. libesedb_python-20260704/libuna/libuna_codepage_windows_936.h +59 -0
  690. libesedb_python-20260704/libuna/libuna_codepage_windows_949.c +8163 -0
  691. libesedb_python-20260704/libuna/libuna_codepage_windows_949.h +59 -0
  692. libesedb_python-20260704/libuna/libuna_codepage_windows_950.c +6390 -0
  693. libesedb_python-20260704/libuna/libuna_codepage_windows_950.h +59 -0
  694. libesedb_python-20260704/libuna/libuna_definitions.h +436 -0
  695. libesedb_python-20260704/libuna/libuna_error.c +111 -0
  696. libesedb_python-20260704/libuna/libuna_error.h +74 -0
  697. libesedb_python-20260704/libuna/libuna_extern.h +53 -0
  698. libesedb_python-20260704/libuna/libuna_libcerror.h +50 -0
  699. libesedb_python-20260704/libuna/libuna_scsu.c +64 -0
  700. libesedb_python-20260704/libuna/libuna_scsu.h +45 -0
  701. libesedb_python-20260704/libuna/libuna_support.c +39 -0
  702. libesedb_python-20260704/libuna/libuna_support.h +49 -0
  703. libesedb_python-20260704/libuna/libuna_types.h +53 -0
  704. libesedb_python-20260704/libuna/libuna_unicode_character.c +5828 -0
  705. libesedb_python-20260704/libuna/libuna_unicode_character.h +260 -0
  706. libesedb_python-20260704/libuna/libuna_unused.h +44 -0
  707. libesedb_python-20260704/libuna/libuna_url_stream.c +584 -0
  708. libesedb_python-20260704/libuna/libuna_url_stream.h +71 -0
  709. libesedb_python-20260704/libuna/libuna_utf16_stream.c +815 -0
  710. libesedb_python-20260704/libuna/libuna_utf16_stream.h +109 -0
  711. libesedb_python-20260704/libuna/libuna_utf16_string.c +3950 -0
  712. libesedb_python-20260704/libuna/libuna_utf16_string.h +325 -0
  713. libesedb_python-20260704/libuna/libuna_utf32_stream.c +819 -0
  714. libesedb_python-20260704/libuna/libuna_utf32_stream.h +109 -0
  715. libesedb_python-20260704/libuna/libuna_utf32_string.c +3808 -0
  716. libesedb_python-20260704/libuna/libuna_utf32_string.h +321 -0
  717. libesedb_python-20260704/libuna/libuna_utf7_stream.c +628 -0
  718. libesedb_python-20260704/libuna/libuna_utf7_stream.h +98 -0
  719. libesedb_python-20260704/libuna/libuna_utf8_stream.c +748 -0
  720. libesedb_python-20260704/libuna/libuna_utf8_stream.h +105 -0
  721. libesedb_python-20260704/libuna/libuna_utf8_string.c +4092 -0
  722. libesedb_python-20260704/libuna/libuna_utf8_string.h +329 -0
  723. libesedb_python-20260704/ltmain.sh +11436 -0
  724. libesedb_python-20260704/m4/common.m4 +656 -0
  725. libesedb_python-20260704/m4/libbfio.m4 +215 -0
  726. libesedb_python-20260704/m4/libcdata.m4 +227 -0
  727. libesedb_python-20260704/m4/libcerror.m4 +186 -0
  728. libesedb_python-20260704/m4/libcfile.m4 +307 -0
  729. libesedb_python-20260704/m4/libclocale.m4 +242 -0
  730. libesedb_python-20260704/m4/libcnotify.m4 +160 -0
  731. libesedb_python-20260704/m4/libcpath.m4 +274 -0
  732. libesedb_python-20260704/m4/libcsplit.m4 +183 -0
  733. libesedb_python-20260704/m4/libcthreads.m4 +214 -0
  734. libesedb_python-20260704/m4/libfcache.m4 +173 -0
  735. libesedb_python-20260704/m4/libfdata.m4 +241 -0
  736. libesedb_python-20260704/m4/libfdatetime.m4 +219 -0
  737. libesedb_python-20260704/m4/libfguid.m4 +153 -0
  738. libesedb_python-20260704/m4/libfmapi.m4 +192 -0
  739. libesedb_python-20260704/m4/libfvalue.m4 +240 -0
  740. libesedb_python-20260704/m4/libfwnt.m4 +172 -0
  741. libesedb_python-20260704/m4/libmapidb.m4 +141 -0
  742. libesedb_python-20260704/m4/libtool.m4 +8427 -0
  743. libesedb_python-20260704/m4/libuna.m4 +311 -0
  744. {libesedb-20240420 → libesedb_python-20260704}/m4/ltoptions.m4 +0 -0
  745. {libesedb-20240420 → libesedb_python-20260704}/m4/ltsugar.m4 +0 -0
  746. {libesedb-20240420 → libesedb_python-20260704}/m4/ltversion.m4 +0 -0
  747. {libesedb-20240420 → libesedb_python-20260704}/m4/lt~obsolete.m4 +0 -0
  748. libesedb_python-20260704/m4/pthread.m4 +126 -0
  749. libesedb_python-20260704/m4/python.m4 +222 -0
  750. libesedb_python-20260704/m4/tests.m4 +319 -0
  751. libesedb_python-20260704/m4/types.m4 +133 -0
  752. libesedb_python-20260704/m4/yaltools.m4 +99 -0
  753. libesedb_python-20260704/manuals/Makefile.am +12 -0
  754. libesedb_python-20260704/manuals/Makefile.in +842 -0
  755. libesedb_python-20260704/manuals/esedbexport.1 +98 -0
  756. libesedb_python-20260704/manuals/esedbinfo.1 +102 -0
  757. libesedb_python-20260704/manuals/libesedb.3 +1087 -0
  758. libesedb_python-20260704/msvscpp/Makefile.in +776 -0
  759. libesedb_python-20260704/ossfuzz/Makefile.in +1071 -0
  760. libesedb_python-20260704/ossfuzz/column_fuzzer.cc +146 -0
  761. libesedb_python-20260704/ossfuzz/file_fuzzer.cc +99 -0
  762. libesedb_python-20260704/ossfuzz/ossfuzz_libbfio.h +58 -0
  763. libesedb_python-20260704/ossfuzz/ossfuzz_libesedb.h +30 -0
  764. libesedb_python-20260704/ossfuzz/record_fuzzer.cc +144 -0
  765. libesedb_python-20260704/ossfuzz/table_fuzzer.cc +121 -0
  766. libesedb_python-20260704/po/Makevars +45 -0
  767. libesedb_python-20260704/pyesedb/Makefile.am +63 -0
  768. libesedb_python-20260704/pyesedb/Makefile.in +1214 -0
  769. libesedb_python-20260704/pyesedb/pyesedb.c +891 -0
  770. libesedb_python-20260704/pyesedb/pyesedb.h +71 -0
  771. libesedb_python-20260704/pyesedb/pyesedb_column.c +559 -0
  772. libesedb_python-20260704/pyesedb/pyesedb_column.h +82 -0
  773. libesedb_python-20260704/pyesedb/pyesedb_column_types.c +516 -0
  774. libesedb_python-20260704/pyesedb/pyesedb_column_types.h +63 -0
  775. libesedb_python-20260704/pyesedb/pyesedb_columns.c +452 -0
  776. libesedb_python-20260704/pyesedb/pyesedb_columns.h +95 -0
  777. libesedb_python-20260704/pyesedb/pyesedb_datetime.c +691 -0
  778. libesedb_python-20260704/pyesedb/pyesedb_datetime.h +65 -0
  779. libesedb_python-20260704/pyesedb/pyesedb_error.c +422 -0
  780. libesedb_python-20260704/pyesedb/pyesedb_error.h +60 -0
  781. libesedb_python-20260704/pyesedb/pyesedb_file.c +1399 -0
  782. libesedb_python-20260704/pyesedb/pyesedb_file.h +136 -0
  783. libesedb_python-20260704/pyesedb/pyesedb_file_object_io_handle.c +1524 -0
  784. libesedb_python-20260704/pyesedb/pyesedb_file_object_io_handle.h +141 -0
  785. libesedb_python-20260704/pyesedb/pyesedb_file_types.c +292 -0
  786. libesedb_python-20260704/pyesedb/pyesedb_file_types.h +63 -0
  787. libesedb_python-20260704/pyesedb/pyesedb_index.c +741 -0
  788. libesedb_python-20260704/pyesedb/pyesedb_index.h +95 -0
  789. libesedb_python-20260704/pyesedb/pyesedb_indexes.c +452 -0
  790. libesedb_python-20260704/pyesedb/pyesedb_indexes.h +95 -0
  791. libesedb_python-20260704/pyesedb/pyesedb_integer.c +399 -0
  792. libesedb_python-20260704/pyesedb/pyesedb_integer.h +56 -0
  793. libesedb_python-20260704/pyesedb/pyesedb_libbfio.h +54 -0
  794. libesedb_python-20260704/pyesedb/pyesedb_libcerror.h +50 -0
  795. libesedb_python-20260704/pyesedb/pyesedb_libclocale.h +50 -0
  796. libesedb_python-20260704/pyesedb/pyesedb_libesedb.h +30 -0
  797. libesedb_python-20260704/pyesedb/pyesedb_long_value.c +549 -0
  798. libesedb_python-20260704/pyesedb/pyesedb_long_value.h +78 -0
  799. libesedb_python-20260704/pyesedb/pyesedb_multi_value.c +1004 -0
  800. libesedb_python-20260704/pyesedb/pyesedb_multi_value.h +94 -0
  801. libesedb_python-20260704/pyesedb/pyesedb_python.h +83 -0
  802. libesedb_python-20260704/pyesedb/pyesedb_record.c +1669 -0
  803. libesedb_python-20260704/pyesedb/pyesedb_record.h +129 -0
  804. libesedb_python-20260704/pyesedb/pyesedb_records.c +452 -0
  805. libesedb_python-20260704/pyesedb/pyesedb_records.h +95 -0
  806. libesedb_python-20260704/pyesedb/pyesedb_table.c +1115 -0
  807. libesedb_python-20260704/pyesedb/pyesedb_table.h +116 -0
  808. libesedb_python-20260704/pyesedb/pyesedb_tables.c +452 -0
  809. libesedb_python-20260704/pyesedb/pyesedb_tables.h +95 -0
  810. libesedb_python-20260704/pyesedb/pyesedb_unused.h +44 -0
  811. libesedb_python-20260704/pyesedb/pyesedb_value_flags.c +320 -0
  812. libesedb_python-20260704/pyesedb/pyesedb_value_flags.h +63 -0
  813. libesedb_python-20260704/pyproject.toml +35 -0
  814. libesedb_python-20260704/pyproject.toml.in +35 -0
  815. libesedb_python-20260704/tests/Makefile.am +706 -0
  816. libesedb_python-20260704/tests/Makefile.in +2133 -0
  817. libesedb_python-20260704/tests/atlocal.in +29 -0
  818. libesedb_python-20260704/tests/esedb_test_block_descriptor.c +311 -0
  819. libesedb_python-20260704/tests/esedb_test_block_tree.c +752 -0
  820. libesedb_python-20260704/tests/esedb_test_block_tree_node.c +331 -0
  821. libesedb_python-20260704/tests/esedb_test_catalog.c +1281 -0
  822. libesedb_python-20260704/tests/esedb_test_catalog_definition.c +1781 -0
  823. libesedb_python-20260704/tests/esedb_test_checksum.c +1382 -0
  824. libesedb_python-20260704/tests/esedb_test_column.c +1236 -0
  825. libesedb_python-20260704/tests/esedb_test_column_type.c +132 -0
  826. libesedb_python-20260704/tests/esedb_test_compression.c +1458 -0
  827. libesedb_python-20260704/tests/esedb_test_data_definition.c +503 -0
  828. libesedb_python-20260704/tests/esedb_test_data_segment.c +998 -0
  829. libesedb_python-20260704/tests/esedb_test_database.c +417 -0
  830. libesedb_python-20260704/tests/esedb_test_error.c +150 -0
  831. libesedb_python-20260704/tests/esedb_test_file.c +1718 -0
  832. libesedb_python-20260704/tests/esedb_test_file_header.c +880 -0
  833. libesedb_python-20260704/tests/esedb_test_functions.c +562 -0
  834. libesedb_python-20260704/tests/esedb_test_functions.h +66 -0
  835. libesedb_python-20260704/tests/esedb_test_getopt.c +190 -0
  836. libesedb_python-20260704/tests/esedb_test_getopt.h +68 -0
  837. libesedb_python-20260704/tests/esedb_test_index.c +128 -0
  838. libesedb_python-20260704/tests/esedb_test_io_handle.c +443 -0
  839. libesedb_python-20260704/tests/esedb_test_leaf_page_descriptor.c +470 -0
  840. libesedb_python-20260704/tests/esedb_test_libbfio.h +58 -0
  841. libesedb_python-20260704/tests/esedb_test_libcdata.h +54 -0
  842. libesedb_python-20260704/tests/esedb_test_libcerror.h +50 -0
  843. libesedb_python-20260704/tests/esedb_test_libclocale.h +50 -0
  844. libesedb_python-20260704/tests/esedb_test_libcnotify.h +50 -0
  845. libesedb_python-20260704/tests/esedb_test_libesedb.h +30 -0
  846. libesedb_python-20260704/tests/esedb_test_libfcache.h +50 -0
  847. libesedb_python-20260704/tests/esedb_test_libfdata.h +54 -0
  848. libesedb_python-20260704/tests/esedb_test_libuna.h +60 -0
  849. libesedb_python-20260704/tests/esedb_test_long_value.c +134 -0
  850. libesedb_python-20260704/tests/esedb_test_macros.h +257 -0
  851. libesedb_python-20260704/tests/esedb_test_memory.c +199 -0
  852. libesedb_python-20260704/tests/esedb_test_memory.h +66 -0
  853. libesedb_python-20260704/tests/esedb_test_multi_value.c +150 -0
  854. libesedb_python-20260704/tests/esedb_test_notify.c +229 -0
  855. libesedb_python-20260704/tests/esedb_test_page.c +2247 -0
  856. libesedb_python-20260704/tests/esedb_test_page_header.c +960 -0
  857. libesedb_python-20260704/tests/esedb_test_page_tree.c +474 -0
  858. libesedb_python-20260704/tests/esedb_test_page_tree_key.c +812 -0
  859. libesedb_python-20260704/tests/esedb_test_page_tree_value.c +475 -0
  860. libesedb_python-20260704/tests/esedb_test_page_value.c +307 -0
  861. libesedb_python-20260704/tests/esedb_test_record.c +176 -0
  862. libesedb_python-20260704/tests/esedb_test_root_page_header.c +470 -0
  863. libesedb_python-20260704/tests/esedb_test_space_tree.c +116 -0
  864. libesedb_python-20260704/tests/esedb_test_space_tree_value.c +470 -0
  865. libesedb_python-20260704/tests/esedb_test_support.c +796 -0
  866. libesedb_python-20260704/tests/esedb_test_table.c +144 -0
  867. libesedb_python-20260704/tests/esedb_test_table_definition.c +393 -0
  868. libesedb_python-20260704/tests/esedb_test_tools_info_handle.c +299 -0
  869. libesedb_python-20260704/tests/esedb_test_tools_output.c +105 -0
  870. libesedb_python-20260704/tests/esedb_test_tools_signal.c +213 -0
  871. libesedb_python-20260704/tests/esedb_test_tools_windows_search_compression.c +488 -0
  872. libesedb_python-20260704/tests/esedb_test_unused.h +50 -0
  873. libesedb_python-20260704/tests/generate_test_inputs.sh +301 -0
  874. libesedb_python-20260704/tests/package.m4 +5 -0
  875. libesedb_python-20260704/tests/pyesedb_test_file.py +193 -0
  876. libesedb_python-20260704/tests/pyesedb_test_support.py +108 -0
  877. libesedb_python-20260704/tests/test_library.at +41 -0
  878. libesedb_python-20260704/tests/test_macros.at +188 -0
  879. libesedb_python-20260704/tests/test_manpages.at +73 -0
  880. libesedb_python-20260704/tests/test_python_module.at +145 -0
  881. libesedb_python-20260704/tests/test_tools.at +256 -0
  882. libesedb-20240420/AUTHORS +0 -4
  883. libesedb-20240420/Makefile.am +0 -111
  884. libesedb-20240420/Makefile.in +0 -1243
  885. libesedb-20240420/PKG-INFO +0 -13
  886. libesedb-20240420/README +0 -27
  887. libesedb-20240420/acinclude.m4 +0 -60
  888. libesedb-20240420/aclocal.m4 +0 -1550
  889. libesedb-20240420/common/Makefile.in +0 -803
  890. libesedb-20240420/common/byte_stream.h +0 -257
  891. libesedb-20240420/common/common.h +0 -43
  892. libesedb-20240420/common/config.h +0 -626
  893. libesedb-20240420/common/config.h.in +0 -625
  894. libesedb-20240420/common/config_borlandc.h +0 -26
  895. libesedb-20240420/common/config_msc.h +0 -34
  896. libesedb-20240420/common/config_winapi.h +0 -95
  897. libesedb-20240420/common/file_stream.h +0 -151
  898. libesedb-20240420/common/memory.h +0 -129
  899. libesedb-20240420/common/narrow_string.h +0 -187
  900. libesedb-20240420/common/system_string.h +0 -154
  901. libesedb-20240420/common/types.h +0 -392
  902. libesedb-20240420/common/types.h.in +0 -392
  903. libesedb-20240420/common/wide_string.h +0 -175
  904. libesedb-20240420/config.guess +0 -1774
  905. libesedb-20240420/config.sub +0 -1907
  906. libesedb-20240420/configure +0 -65590
  907. libesedb-20240420/configure.ac +0 -260
  908. libesedb-20240420/dpkg/changelog +0 -5
  909. libesedb-20240420/dpkg/compat +0 -1
  910. libesedb-20240420/dpkg/control +0 -65
  911. libesedb-20240420/dpkg/copyright +0 -25
  912. libesedb-20240420/dpkg/rules +0 -31
  913. libesedb-20240420/esedbtools/Makefile.am +0 -112
  914. libesedb-20240420/esedbtools/Makefile.in +0 -1072
  915. libesedb-20240420/esedbtools/database_types.c +0 -203
  916. libesedb-20240420/esedbtools/database_types.h +0 -76
  917. libesedb-20240420/esedbtools/esedbexport.c +0 -555
  918. libesedb-20240420/esedbtools/esedbinfo.c +0 -286
  919. libesedb-20240420/esedbtools/esedbtools_getopt.c +0 -190
  920. libesedb-20240420/esedbtools/esedbtools_getopt.h +0 -68
  921. libesedb-20240420/esedbtools/esedbtools_i18n.h +0 -48
  922. libesedb-20240420/esedbtools/esedbtools_libbfio.h +0 -58
  923. libesedb-20240420/esedbtools/esedbtools_libcdata.h +0 -54
  924. libesedb-20240420/esedbtools/esedbtools_libcerror.h +0 -50
  925. libesedb-20240420/esedbtools/esedbtools_libcfile.h +0 -50
  926. libesedb-20240420/esedbtools/esedbtools_libclocale.h +0 -50
  927. libesedb-20240420/esedbtools/esedbtools_libcnotify.h +0 -50
  928. libesedb-20240420/esedbtools/esedbtools_libcpath.h +0 -48
  929. libesedb-20240420/esedbtools/esedbtools_libesedb.h +0 -30
  930. libesedb-20240420/esedbtools/esedbtools_libfdatetime.h +0 -56
  931. libesedb-20240420/esedbtools/esedbtools_libfguid.h +0 -49
  932. libesedb-20240420/esedbtools/esedbtools_libfmapi.h +0 -60
  933. libesedb-20240420/esedbtools/esedbtools_libfvalue.h +0 -59
  934. libesedb-20240420/esedbtools/esedbtools_libfwnt.h +0 -58
  935. libesedb-20240420/esedbtools/esedbtools_libuna.h +0 -60
  936. libesedb-20240420/esedbtools/esedbtools_output.c +0 -210
  937. libesedb-20240420/esedbtools/esedbtools_output.h +0 -55
  938. libesedb-20240420/esedbtools/esedbtools_signal.c +0 -262
  939. libesedb-20240420/esedbtools/esedbtools_signal.h +0 -72
  940. libesedb-20240420/esedbtools/esedbtools_system_string.c +0 -121
  941. libesedb-20240420/esedbtools/esedbtools_system_string.h +0 -46
  942. libesedb-20240420/esedbtools/esedbtools_unused.h +0 -50
  943. libesedb-20240420/esedbtools/export.c +0 -820
  944. libesedb-20240420/esedbtools/export.h +0 -75
  945. libesedb-20240420/esedbtools/export_handle.c +0 -4559
  946. libesedb-20240420/esedbtools/export_handle.h +0 -233
  947. libesedb-20240420/esedbtools/info_handle.c +0 -1450
  948. libesedb-20240420/esedbtools/info_handle.h +0 -113
  949. libesedb-20240420/esedbtools/log_handle.c +0 -276
  950. libesedb-20240420/esedbtools/log_handle.h +0 -71
  951. libesedb-20240420/esedbtools/srumdb.c +0 -273
  952. libesedb-20240420/esedbtools/srumdb.h +0 -48
  953. libesedb-20240420/esedbtools/webcache.c +0 -515
  954. libesedb-20240420/esedbtools/webcache.h +0 -54
  955. libesedb-20240420/esedbtools/windows_search.c +0 -3168
  956. libesedb-20240420/esedbtools/windows_search.h +0 -106
  957. libesedb-20240420/esedbtools/windows_search_compression.c +0 -284
  958. libesedb-20240420/esedbtools/windows_search_compression.h +0 -53
  959. libesedb-20240420/esedbtools/windows_security.c +0 -995
  960. libesedb-20240420/esedbtools/windows_security.h +0 -68
  961. libesedb-20240420/include/Makefile.in +0 -865
  962. libesedb-20240420/include/libesedb/codepage.h +0 -122
  963. libesedb-20240420/include/libesedb/definitions.h +0 -103
  964. libesedb-20240420/include/libesedb/definitions.h.in +0 -103
  965. libesedb-20240420/include/libesedb/error.h +0 -291
  966. libesedb-20240420/include/libesedb/extern.h +0 -44
  967. libesedb-20240420/include/libesedb/features.h +0 -50
  968. libesedb-20240420/include/libesedb/features.h.in +0 -50
  969. libesedb-20240420/include/libesedb/types.h +0 -217
  970. libesedb-20240420/include/libesedb/types.h.in +0 -217
  971. libesedb-20240420/include/libesedb.h +0 -1311
  972. libesedb-20240420/include/libesedb.h.in +0 -1311
  973. libesedb-20240420/libbfio/Makefile.in +0 -966
  974. libesedb-20240420/libbfio/libbfio_codepage.h +0 -90
  975. libesedb-20240420/libbfio/libbfio_definitions.h +0 -89
  976. libesedb-20240420/libbfio/libbfio_error.c +0 -111
  977. libesedb-20240420/libbfio/libbfio_error.h +0 -74
  978. libesedb-20240420/libbfio/libbfio_extern.h +0 -46
  979. libesedb-20240420/libbfio/libbfio_file.c +0 -444
  980. libesedb-20240420/libbfio/libbfio_file.h +0 -90
  981. libesedb-20240420/libbfio/libbfio_file_io_handle.c +0 -1198
  982. libesedb-20240420/libbfio/libbfio_file_io_handle.h +0 -152
  983. libesedb-20240420/libbfio/libbfio_file_pool.c +0 -494
  984. libesedb-20240420/libbfio/libbfio_file_pool.h +0 -81
  985. libesedb-20240420/libbfio/libbfio_file_range.c +0 -468
  986. libesedb-20240420/libbfio/libbfio_file_range.h +0 -104
  987. libesedb-20240420/libbfio/libbfio_file_range_io_handle.c +0 -1158
  988. libesedb-20240420/libbfio/libbfio_file_range_io_handle.h +0 -160
  989. libesedb-20240420/libbfio/libbfio_handle.c +0 -2708
  990. libesedb-20240420/libbfio/libbfio_handle.h +0 -363
  991. libesedb-20240420/libbfio/libbfio_libcdata.h +0 -54
  992. libesedb-20240420/libbfio/libbfio_libcerror.h +0 -50
  993. libesedb-20240420/libbfio/libbfio_libcfile.h +0 -50
  994. libesedb-20240420/libbfio/libbfio_libclocale.h +0 -50
  995. libesedb-20240420/libbfio/libbfio_libcpath.h +0 -48
  996. libesedb-20240420/libbfio/libbfio_libcthreads.h +0 -64
  997. libesedb-20240420/libbfio/libbfio_libuna.h +0 -60
  998. libesedb-20240420/libbfio/libbfio_memory_range.c +0 -205
  999. libesedb-20240420/libbfio/libbfio_memory_range.h +0 -60
  1000. libesedb-20240420/libbfio/libbfio_memory_range_io_handle.c +0 -871
  1001. libesedb-20240420/libbfio/libbfio_memory_range_io_handle.h +0 -129
  1002. libesedb-20240420/libbfio/libbfio_pool.c +0 -3521
  1003. libesedb-20240420/libbfio/libbfio_pool.h +0 -275
  1004. libesedb-20240420/libbfio/libbfio_support.c +0 -93
  1005. libesedb-20240420/libbfio/libbfio_support.h +0 -58
  1006. libesedb-20240420/libbfio/libbfio_system_string.c +0 -1017
  1007. libesedb-20240420/libbfio/libbfio_system_string.h +0 -95
  1008. libesedb-20240420/libbfio/libbfio_types.h +0 -49
  1009. libesedb-20240420/libbfio/libbfio_unused.h +0 -44
  1010. libesedb-20240420/libcdata/Makefile.in +0 -945
  1011. libesedb-20240420/libcdata/libcdata_array.c +0 -2015
  1012. libesedb-20240420/libcdata/libcdata_array.h +0 -200
  1013. libesedb-20240420/libcdata/libcdata_btree.c +0 -964
  1014. libesedb-20240420/libcdata/libcdata_btree.h +0 -141
  1015. libesedb-20240420/libcdata/libcdata_btree_node.c +0 -1607
  1016. libesedb-20240420/libcdata/libcdata_btree_node.h +0 -101
  1017. libesedb-20240420/libcdata/libcdata_btree_values_list.c +0 -217
  1018. libesedb-20240420/libcdata/libcdata_btree_values_list.h +0 -55
  1019. libesedb-20240420/libcdata/libcdata_definitions.h +0 -81
  1020. libesedb-20240420/libcdata/libcdata_error.c +0 -111
  1021. libesedb-20240420/libcdata/libcdata_error.h +0 -74
  1022. libesedb-20240420/libcdata/libcdata_extern.h +0 -46
  1023. libesedb-20240420/libcdata/libcdata_libcerror.h +0 -50
  1024. libesedb-20240420/libcdata/libcdata_libcthreads.h +0 -64
  1025. libesedb-20240420/libcdata/libcdata_list.c +0 -2906
  1026. libesedb-20240420/libcdata/libcdata_list.h +0 -235
  1027. libesedb-20240420/libcdata/libcdata_list_element.c +0 -926
  1028. libesedb-20240420/libcdata/libcdata_list_element.h +0 -142
  1029. libesedb-20240420/libcdata/libcdata_range_list.c +0 -4922
  1030. libesedb-20240420/libcdata/libcdata_range_list.h +0 -382
  1031. libesedb-20240420/libcdata/libcdata_range_list_value.c +0 -429
  1032. libesedb-20240420/libcdata/libcdata_range_list_value.h +0 -100
  1033. libesedb-20240420/libcdata/libcdata_support.c +0 -39
  1034. libesedb-20240420/libcdata/libcdata_support.h +0 -47
  1035. libesedb-20240420/libcdata/libcdata_tree_node.c +0 -4216
  1036. libesedb-20240420/libcdata/libcdata_tree_node.h +0 -301
  1037. libesedb-20240420/libcdata/libcdata_types.h +0 -57
  1038. libesedb-20240420/libcdata/libcdata_unused.h +0 -44
  1039. libesedb-20240420/libcerror/Makefile.in +0 -887
  1040. libesedb-20240420/libcerror/libcerror_definitions.h +0 -326
  1041. libesedb-20240420/libcerror/libcerror_error.c +0 -827
  1042. libesedb-20240420/libcerror/libcerror_error.h +0 -125
  1043. libesedb-20240420/libcerror/libcerror_extern.h +0 -46
  1044. libesedb-20240420/libcerror/libcerror_support.c +0 -39
  1045. libesedb-20240420/libcerror/libcerror_support.h +0 -47
  1046. libesedb-20240420/libcerror/libcerror_system.c +0 -587
  1047. libesedb-20240420/libcerror/libcerror_system.h +0 -78
  1048. libesedb-20240420/libcerror/libcerror_types.h +0 -51
  1049. libesedb-20240420/libcerror/libcerror_unused.h +0 -44
  1050. libesedb-20240420/libcfile/Makefile.in +0 -914
  1051. libesedb-20240420/libcfile/libcfile_definitions.h +0 -101
  1052. libesedb-20240420/libcfile/libcfile_error.c +0 -111
  1053. libesedb-20240420/libcfile/libcfile_error.h +0 -74
  1054. libesedb-20240420/libcfile/libcfile_extern.h +0 -46
  1055. libesedb-20240420/libcfile/libcfile_file.c +0 -4570
  1056. libesedb-20240420/libcfile/libcfile_file.h +0 -273
  1057. libesedb-20240420/libcfile/libcfile_libcerror.h +0 -50
  1058. libesedb-20240420/libcfile/libcfile_libclocale.h +0 -50
  1059. libesedb-20240420/libcfile/libcfile_libcnotify.h +0 -50
  1060. libesedb-20240420/libcfile/libcfile_libuna.h +0 -60
  1061. libesedb-20240420/libcfile/libcfile_notify.c +0 -120
  1062. libesedb-20240420/libcfile/libcfile_notify.h +0 -63
  1063. libesedb-20240420/libcfile/libcfile_support.c +0 -1171
  1064. libesedb-20240420/libcfile/libcfile_support.h +0 -98
  1065. libesedb-20240420/libcfile/libcfile_system_string.c +0 -1017
  1066. libesedb-20240420/libcfile/libcfile_system_string.h +0 -95
  1067. libesedb-20240420/libcfile/libcfile_types.h +0 -47
  1068. libesedb-20240420/libcfile/libcfile_unused.h +0 -44
  1069. libesedb-20240420/libcfile/libcfile_winapi.c +0 -815
  1070. libesedb-20240420/libcfile/libcfile_winapi.h +0 -122
  1071. libesedb-20240420/libclocale/Makefile.in +0 -897
  1072. libesedb-20240420/libclocale/libclocale_codepage.c +0 -920
  1073. libesedb-20240420/libclocale/libclocale_codepage.h +0 -77
  1074. libesedb-20240420/libclocale/libclocale_definitions.h +0 -106
  1075. libesedb-20240420/libclocale/libclocale_extern.h +0 -46
  1076. libesedb-20240420/libclocale/libclocale_libcerror.h +0 -50
  1077. libesedb-20240420/libclocale/libclocale_locale.c +0 -494
  1078. libesedb-20240420/libclocale/libclocale_locale.h +0 -66
  1079. libesedb-20240420/libclocale/libclocale_support.c +0 -130
  1080. libesedb-20240420/libclocale/libclocale_support.h +0 -55
  1081. libesedb-20240420/libclocale/libclocale_unused.h +0 -44
  1082. libesedb-20240420/libclocale/libclocale_wide_string.c +0 -69
  1083. libesedb-20240420/libclocale/libclocale_wide_string.h +0 -54
  1084. libesedb-20240420/libcnotify/Makefile.in +0 -895
  1085. libesedb-20240420/libcnotify/libcnotify_definitions.h +0 -54
  1086. libesedb-20240420/libcnotify/libcnotify_extern.h +0 -46
  1087. libesedb-20240420/libcnotify/libcnotify_libcerror.h +0 -50
  1088. libesedb-20240420/libcnotify/libcnotify_print.c +0 -400
  1089. libesedb-20240420/libcnotify/libcnotify_print.h +0 -68
  1090. libesedb-20240420/libcnotify/libcnotify_stream.c +0 -182
  1091. libesedb-20240420/libcnotify/libcnotify_stream.h +0 -56
  1092. libesedb-20240420/libcnotify/libcnotify_support.c +0 -39
  1093. libesedb-20240420/libcnotify/libcnotify_support.h +0 -49
  1094. libesedb-20240420/libcnotify/libcnotify_unused.h +0 -44
  1095. libesedb-20240420/libcnotify/libcnotify_verbose.c +0 -38
  1096. libesedb-20240420/libcnotify/libcnotify_verbose.h +0 -50
  1097. libesedb-20240420/libcpath/Makefile.in +0 -899
  1098. libesedb-20240420/libcpath/libcpath_definitions.h +0 -83
  1099. libesedb-20240420/libcpath/libcpath_error.c +0 -111
  1100. libesedb-20240420/libcpath/libcpath_error.h +0 -74
  1101. libesedb-20240420/libcpath/libcpath_extern.h +0 -46
  1102. libesedb-20240420/libcpath/libcpath_libcerror.h +0 -50
  1103. libesedb-20240420/libcpath/libcpath_libclocale.h +0 -50
  1104. libesedb-20240420/libcpath/libcpath_libcsplit.h +0 -52
  1105. libesedb-20240420/libcpath/libcpath_libuna.h +0 -60
  1106. libesedb-20240420/libcpath/libcpath_path.c +0 -7174
  1107. libesedb-20240420/libcpath/libcpath_path.h +0 -273
  1108. libesedb-20240420/libcpath/libcpath_support.c +0 -93
  1109. libesedb-20240420/libcpath/libcpath_support.h +0 -58
  1110. libesedb-20240420/libcpath/libcpath_system_string.c +0 -1017
  1111. libesedb-20240420/libcpath/libcpath_system_string.h +0 -95
  1112. libesedb-20240420/libcpath/libcpath_unused.h +0 -44
  1113. libesedb-20240420/libcsplit/Makefile.in +0 -912
  1114. libesedb-20240420/libcsplit/libcsplit_definitions.h +0 -47
  1115. libesedb-20240420/libcsplit/libcsplit_error.c +0 -111
  1116. libesedb-20240420/libcsplit/libcsplit_error.h +0 -74
  1117. libesedb-20240420/libcsplit/libcsplit_extern.h +0 -46
  1118. libesedb-20240420/libcsplit/libcsplit_libcerror.h +0 -50
  1119. libesedb-20240420/libcsplit/libcsplit_narrow_split_string.c +0 -547
  1120. libesedb-20240420/libcsplit/libcsplit_narrow_split_string.h +0 -107
  1121. libesedb-20240420/libcsplit/libcsplit_narrow_string.c +0 -288
  1122. libesedb-20240420/libcsplit/libcsplit_narrow_string.h +0 -49
  1123. libesedb-20240420/libcsplit/libcsplit_support.c +0 -39
  1124. libesedb-20240420/libcsplit/libcsplit_support.h +0 -47
  1125. libesedb-20240420/libcsplit/libcsplit_types.h +0 -49
  1126. libesedb-20240420/libcsplit/libcsplit_unused.h +0 -44
  1127. libesedb-20240420/libcsplit/libcsplit_wide_split_string.c +0 -551
  1128. libesedb-20240420/libcsplit/libcsplit_wide_split_string.h +0 -111
  1129. libesedb-20240420/libcsplit/libcsplit_wide_string.c +0 -292
  1130. libesedb-20240420/libcsplit/libcsplit_wide_string.h +0 -53
  1131. libesedb-20240420/libcthreads/Makefile.in +0 -947
  1132. libesedb-20240420/libcthreads/libcthreads_condition.c +0 -735
  1133. libesedb-20240420/libcthreads/libcthreads_condition.h +0 -120
  1134. libesedb-20240420/libcthreads/libcthreads_definitions.h +0 -84
  1135. libesedb-20240420/libcthreads/libcthreads_error.c +0 -111
  1136. libesedb-20240420/libcthreads/libcthreads_error.h +0 -74
  1137. libesedb-20240420/libcthreads/libcthreads_extern.h +0 -46
  1138. libesedb-20240420/libcthreads/libcthreads_libcerror.h +0 -50
  1139. libesedb-20240420/libcthreads/libcthreads_lock.c +0 -391
  1140. libesedb-20240420/libcthreads/libcthreads_lock.h +0 -88
  1141. libesedb-20240420/libcthreads/libcthreads_mutex.c +0 -601
  1142. libesedb-20240420/libcthreads/libcthreads_mutex.h +0 -98
  1143. libesedb-20240420/libcthreads/libcthreads_queue.c +0 -1150
  1144. libesedb-20240420/libcthreads/libcthreads_queue.h +0 -136
  1145. libesedb-20240420/libcthreads/libcthreads_read_write_lock.c +0 -690
  1146. libesedb-20240420/libcthreads/libcthreads_read_write_lock.h +0 -119
  1147. libesedb-20240420/libcthreads/libcthreads_repeating_thread.c +0 -644
  1148. libesedb-20240420/libcthreads/libcthreads_repeating_thread.h +0 -115
  1149. libesedb-20240420/libcthreads/libcthreads_support.c +0 -39
  1150. libesedb-20240420/libcthreads/libcthreads_support.h +0 -47
  1151. libesedb-20240420/libcthreads/libcthreads_thread.c +0 -405
  1152. libesedb-20240420/libcthreads/libcthreads_thread.h +0 -95
  1153. libesedb-20240420/libcthreads/libcthreads_thread_attributes.c +0 -149
  1154. libesedb-20240420/libcthreads/libcthreads_thread_attributes.h +0 -78
  1155. libesedb-20240420/libcthreads/libcthreads_thread_pool.c +0 -1721
  1156. libesedb-20240420/libcthreads/libcthreads_thread_pool.h +0 -177
  1157. libesedb-20240420/libcthreads/libcthreads_types.h +0 -63
  1158. libesedb-20240420/libcthreads/libcthreads_unused.h +0 -44
  1159. libesedb-20240420/libesedb/Makefile.in +0 -1203
  1160. libesedb-20240420/libesedb/esedb_file_header.h +0 -352
  1161. libesedb-20240420/libesedb/esedb_page.h +0 -146
  1162. libesedb-20240420/libesedb/esedb_page_values.h +0 -273
  1163. libesedb-20240420/libesedb/libesedb.c +0 -80
  1164. libesedb-20240420/libesedb/libesedb.rc +0 -38
  1165. libesedb-20240420/libesedb/libesedb.rc.in +0 -38
  1166. libesedb-20240420/libesedb/libesedb_block_descriptor.c +0 -131
  1167. libesedb-20240420/libesedb/libesedb_block_descriptor.h +0 -56
  1168. libesedb-20240420/libesedb/libesedb_block_tree.c +0 -474
  1169. libesedb-20240420/libesedb/libesedb_block_tree.h +0 -83
  1170. libesedb-20240420/libesedb/libesedb_block_tree_node.c +0 -613
  1171. libesedb-20240420/libesedb/libesedb_block_tree_node.h +0 -109
  1172. libesedb-20240420/libesedb/libesedb_catalog.c +0 -1385
  1173. libesedb-20240420/libesedb/libesedb_catalog.h +0 -126
  1174. libesedb-20240420/libesedb/libesedb_catalog_definition.c +0 -1893
  1175. libesedb-20240420/libesedb/libesedb_catalog_definition.h +0 -204
  1176. libesedb-20240420/libesedb/libesedb_checksum.c +0 -584
  1177. libesedb-20240420/libesedb/libesedb_checksum.h +0 -55
  1178. libesedb-20240420/libesedb/libesedb_codepage.c +0 -108
  1179. libesedb-20240420/libesedb/libesedb_codepage.h +0 -116
  1180. libesedb-20240420/libesedb/libesedb_column.c +0 -471
  1181. libesedb-20240420/libesedb/libesedb_column.h +0 -105
  1182. libesedb-20240420/libesedb/libesedb_column_type.c +0 -91
  1183. libesedb-20240420/libesedb/libesedb_column_type.h +0 -64
  1184. libesedb-20240420/libesedb/libesedb_compression.c +0 -1328
  1185. libesedb-20240420/libesedb/libesedb_compression.h +0 -104
  1186. libesedb-20240420/libesedb/libesedb_data_definition.c +0 -1957
  1187. libesedb-20240420/libesedb/libesedb_data_definition.h +0 -117
  1188. libesedb-20240420/libesedb/libesedb_data_segment.c +0 -394
  1189. libesedb-20240420/libesedb/libesedb_data_segment.h +0 -86
  1190. libesedb-20240420/libesedb/libesedb_database.c +0 -605
  1191. libesedb-20240420/libesedb/libesedb_database.h +0 -80
  1192. libesedb-20240420/libesedb/libesedb_debug.c +0 -772
  1193. libesedb-20240420/libesedb/libesedb_debug.h +0 -85
  1194. libesedb-20240420/libesedb/libesedb_definitions.h +0 -258
  1195. libesedb-20240420/libesedb/libesedb_definitions.h.in +0 -258
  1196. libesedb-20240420/libesedb/libesedb_error.c +0 -111
  1197. libesedb-20240420/libesedb/libesedb_error.h +0 -74
  1198. libesedb-20240420/libesedb/libesedb_extern.h +0 -46
  1199. libesedb-20240420/libesedb/libesedb_file.c +0 -2116
  1200. libesedb-20240420/libesedb/libesedb_file.h +0 -192
  1201. libesedb-20240420/libesedb/libesedb_file_header.c +0 -785
  1202. libesedb-20240420/libesedb/libesedb_file_header.h +0 -93
  1203. libesedb-20240420/libesedb/libesedb_i18n.c +0 -63
  1204. libesedb-20240420/libesedb/libesedb_i18n.h +0 -55
  1205. libesedb-20240420/libesedb/libesedb_index.c +0 -744
  1206. libesedb-20240420/libesedb/libesedb_index.h +0 -166
  1207. libesedb-20240420/libesedb/libesedb_io_handle.c +0 -310
  1208. libesedb-20240420/libesedb/libesedb_io_handle.h +0 -126
  1209. libesedb-20240420/libesedb/libesedb_lcid.c +0 -474
  1210. libesedb-20240420/libesedb/libesedb_lcid.h +0 -64
  1211. libesedb-20240420/libesedb/libesedb_leaf_page_descriptor.c +0 -177
  1212. libesedb-20240420/libesedb/libesedb_leaf_page_descriptor.h +0 -69
  1213. libesedb-20240420/libesedb/libesedb_libbfio.h +0 -58
  1214. libesedb-20240420/libesedb/libesedb_libcdata.h +0 -54
  1215. libesedb-20240420/libesedb/libesedb_libcerror.h +0 -50
  1216. libesedb-20240420/libesedb/libesedb_libclocale.h +0 -50
  1217. libesedb-20240420/libesedb/libesedb_libcnotify.h +0 -50
  1218. libesedb-20240420/libesedb/libesedb_libfcache.h +0 -50
  1219. libesedb-20240420/libesedb/libesedb_libfdata.h +0 -54
  1220. libesedb-20240420/libesedb/libesedb_libfvalue.h +0 -60
  1221. libesedb-20240420/libesedb/libesedb_libfwnt.h +0 -58
  1222. libesedb-20240420/libesedb/libesedb_libuna.h +0 -60
  1223. libesedb-20240420/libesedb/libesedb_long_value.c +0 -1315
  1224. libesedb-20240420/libesedb/libesedb_long_value.h +0 -154
  1225. libesedb-20240420/libesedb/libesedb_multi_value.c +0 -1606
  1226. libesedb-20240420/libesedb/libesedb_multi_value.h +0 -213
  1227. libesedb-20240420/libesedb/libesedb_notify.c +0 -120
  1228. libesedb-20240420/libesedb/libesedb_notify.h +0 -63
  1229. libesedb-20240420/libesedb/libesedb_page.c +0 -1656
  1230. libesedb-20240420/libesedb/libesedb_page.h +0 -156
  1231. libesedb-20240420/libesedb/libesedb_page_header.c +0 -581
  1232. libesedb-20240420/libesedb/libesedb_page_header.h +0 -116
  1233. libesedb-20240420/libesedb/libesedb_page_tree.c +0 -3254
  1234. libesedb-20240420/libesedb/libesedb_page_tree.h +0 -201
  1235. libesedb-20240420/libesedb/libesedb_page_tree_key.c +0 -697
  1236. libesedb-20240420/libesedb/libesedb_page_tree_key.h +0 -81
  1237. libesedb-20240420/libesedb/libesedb_page_tree_value.c +0 -299
  1238. libesedb-20240420/libesedb/libesedb_page_tree_value.h +0 -79
  1239. libesedb-20240420/libesedb/libesedb_page_value.c +0 -133
  1240. libesedb-20240420/libesedb/libesedb_page_value.h +0 -68
  1241. libesedb-20240420/libesedb/libesedb_record.c +0 -3876
  1242. libesedb-20240420/libesedb/libesedb_record.h +0 -343
  1243. libesedb-20240420/libesedb/libesedb_record_value.c +0 -506
  1244. libesedb-20240420/libesedb/libesedb_record_value.h +0 -62
  1245. libesedb-20240420/libesedb/libesedb_root_page_header.c +0 -288
  1246. libesedb-20240420/libesedb/libesedb_root_page_header.h +0 -70
  1247. libesedb-20240420/libesedb/libesedb_space_tree.c +0 -861
  1248. libesedb-20240420/libesedb/libesedb_space_tree.h +0 -79
  1249. libesedb-20240420/libesedb/libesedb_space_tree_value.c +0 -209
  1250. libesedb-20240420/libesedb/libesedb_space_tree_value.h +0 -62
  1251. libesedb-20240420/libesedb/libesedb_support.c +0 -430
  1252. libesedb-20240420/libesedb/libesedb_support.h +0 -82
  1253. libesedb-20240420/libesedb/libesedb_table.c +0 -1564
  1254. libesedb-20240420/libesedb/libesedb_table.h +0 -204
  1255. libesedb-20240420/libesedb/libesedb_table_definition.c +0 -682
  1256. libesedb-20240420/libesedb/libesedb_table_definition.h +0 -117
  1257. libesedb-20240420/libesedb/libesedb_types.h +0 -59
  1258. libesedb-20240420/libesedb/libesedb_unused.h +0 -44
  1259. libesedb-20240420/libesedb/libesedb_value_data_handle.c +0 -223
  1260. libesedb-20240420/libesedb/libesedb_value_data_handle.h +0 -49
  1261. libesedb-20240420/libesedb.spec +0 -100
  1262. libesedb-20240420/libfcache/Makefile.in +0 -908
  1263. libesedb-20240420/libfcache/libfcache_cache.c +0 -1118
  1264. libesedb-20240420/libfcache/libfcache_cache.h +0 -149
  1265. libesedb-20240420/libfcache/libfcache_cache_value.c +0 -502
  1266. libesedb-20240420/libfcache/libfcache_cache_value.h +0 -132
  1267. libesedb-20240420/libfcache/libfcache_date_time.c +0 -92
  1268. libesedb-20240420/libfcache/libfcache_date_time.h +0 -45
  1269. libesedb-20240420/libfcache/libfcache_definitions.h +0 -58
  1270. libesedb-20240420/libfcache/libfcache_error.c +0 -111
  1271. libesedb-20240420/libfcache/libfcache_error.h +0 -74
  1272. libesedb-20240420/libfcache/libfcache_extern.h +0 -46
  1273. libesedb-20240420/libfcache/libfcache_libcdata.h +0 -54
  1274. libesedb-20240420/libfcache/libfcache_libcerror.h +0 -50
  1275. libesedb-20240420/libfcache/libfcache_support.c +0 -41
  1276. libesedb-20240420/libfcache/libfcache_support.h +0 -47
  1277. libesedb-20240420/libfcache/libfcache_types.h +0 -49
  1278. libesedb-20240420/libfcache/libfcache_unused.h +0 -44
  1279. libesedb-20240420/libfdata/Makefile.in +0 -961
  1280. libesedb-20240420/libfdata/libfdata_area.c +0 -1482
  1281. libesedb-20240420/libfdata/libfdata_area.h +0 -278
  1282. libesedb-20240420/libfdata/libfdata_cache.c +0 -59
  1283. libesedb-20240420/libfdata/libfdata_cache.h +0 -56
  1284. libesedb-20240420/libfdata/libfdata_definitions.h +0 -249
  1285. libesedb-20240420/libfdata/libfdata_error.c +0 -111
  1286. libesedb-20240420/libfdata/libfdata_error.h +0 -74
  1287. libesedb-20240420/libfdata/libfdata_extern.h +0 -46
  1288. libesedb-20240420/libfdata/libfdata_libcdata.h +0 -54
  1289. libesedb-20240420/libfdata/libfdata_libcerror.h +0 -50
  1290. libesedb-20240420/libfdata/libfdata_libcnotify.h +0 -50
  1291. libesedb-20240420/libfdata/libfdata_libfcache.h +0 -50
  1292. libesedb-20240420/libfdata/libfdata_list.c +0 -4426
  1293. libesedb-20240420/libfdata/libfdata_list.h +0 -452
  1294. libesedb-20240420/libfdata/libfdata_list_element.c +0 -824
  1295. libesedb-20240420/libfdata/libfdata_list_element.h +0 -159
  1296. libesedb-20240420/libfdata/libfdata_mapped_range.c +0 -312
  1297. libesedb-20240420/libfdata/libfdata_mapped_range.h +0 -77
  1298. libesedb-20240420/libfdata/libfdata_notify.c +0 -120
  1299. libesedb-20240420/libfdata/libfdata_notify.h +0 -63
  1300. libesedb-20240420/libfdata/libfdata_range.c +0 -358
  1301. libesedb-20240420/libfdata/libfdata_range.h +0 -94
  1302. libesedb-20240420/libfdata/libfdata_range_list.c +0 -1196
  1303. libesedb-20240420/libfdata/libfdata_range_list.h +0 -214
  1304. libesedb-20240420/libfdata/libfdata_segments_array.c +0 -914
  1305. libesedb-20240420/libfdata/libfdata_segments_array.h +0 -94
  1306. libesedb-20240420/libfdata/libfdata_stream.c +0 -2582
  1307. libesedb-20240420/libfdata/libfdata_stream.h +0 -363
  1308. libesedb-20240420/libfdata/libfdata_support.c +0 -41
  1309. libesedb-20240420/libfdata/libfdata_support.h +0 -47
  1310. libesedb-20240420/libfdata/libfdata_types.h +0 -59
  1311. libesedb-20240420/libfdata/libfdata_unused.h +0 -44
  1312. libesedb-20240420/libfdata/libfdata_vector.c +0 -1932
  1313. libesedb-20240420/libfdata/libfdata_vector.h +0 -295
  1314. libesedb-20240420/libfdatetime/Makefile.in +0 -939
  1315. libesedb-20240420/libfdatetime/libfdatetime_date_time_values.c +0 -1906
  1316. libesedb-20240420/libfdatetime/libfdatetime_date_time_values.h +0 -121
  1317. libesedb-20240420/libfdatetime/libfdatetime_definitions.h +0 -121
  1318. libesedb-20240420/libfdatetime/libfdatetime_error.c +0 -111
  1319. libesedb-20240420/libfdatetime/libfdatetime_error.h +0 -74
  1320. libesedb-20240420/libfdatetime/libfdatetime_extern.h +0 -46
  1321. libesedb-20240420/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
  1322. libesedb-20240420/libfdatetime/libfdatetime_fat_date_time.h +0 -172
  1323. libesedb-20240420/libfdatetime/libfdatetime_filetime.c +0 -1465
  1324. libesedb-20240420/libfdatetime/libfdatetime_filetime.h +0 -177
  1325. libesedb-20240420/libfdatetime/libfdatetime_floatingtime.c +0 -1333
  1326. libesedb-20240420/libfdatetime/libfdatetime_floatingtime.h +0 -168
  1327. libesedb-20240420/libfdatetime/libfdatetime_hfs_time.c +0 -1329
  1328. libesedb-20240420/libfdatetime/libfdatetime_hfs_time.h +0 -166
  1329. libesedb-20240420/libfdatetime/libfdatetime_libcerror.h +0 -50
  1330. libesedb-20240420/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
  1331. libesedb-20240420/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
  1332. libesedb-20240420/libfdatetime/libfdatetime_posix_time.c +0 -1842
  1333. libesedb-20240420/libfdatetime/libfdatetime_posix_time.h +0 -189
  1334. libesedb-20240420/libfdatetime/libfdatetime_support.c +0 -41
  1335. libesedb-20240420/libfdatetime/libfdatetime_support.h +0 -47
  1336. libesedb-20240420/libfdatetime/libfdatetime_systemtime.c +0 -1779
  1337. libesedb-20240420/libfdatetime/libfdatetime_systemtime.h +0 -180
  1338. libesedb-20240420/libfdatetime/libfdatetime_types.h +0 -63
  1339. libesedb-20240420/libfdatetime/libfdatetime_unused.h +0 -44
  1340. libesedb-20240420/libfguid/Makefile.in +0 -889
  1341. libesedb-20240420/libfguid/libfguid_definitions.h +0 -84
  1342. libesedb-20240420/libfguid/libfguid_error.c +0 -111
  1343. libesedb-20240420/libfguid/libfguid_error.h +0 -74
  1344. libesedb-20240420/libfguid/libfguid_extern.h +0 -46
  1345. libesedb-20240420/libfguid/libfguid_identifier.c +0 -2524
  1346. libesedb-20240420/libfguid/libfguid_identifier.h +0 -204
  1347. libesedb-20240420/libfguid/libfguid_libcerror.h +0 -50
  1348. libesedb-20240420/libfguid/libfguid_support.c +0 -41
  1349. libesedb-20240420/libfguid/libfguid_support.h +0 -47
  1350. libesedb-20240420/libfguid/libfguid_types.h +0 -47
  1351. libesedb-20240420/libfguid/libfguid_unused.h +0 -44
  1352. libesedb-20240420/libfmapi/Makefile.in +0 -968
  1353. libesedb-20240420/libfmapi/libfmapi_checksum.c +0 -204
  1354. libesedb-20240420/libfmapi/libfmapi_checksum.h +0 -63
  1355. libesedb-20240420/libfmapi/libfmapi_class_identifier.c +0 -131
  1356. libesedb-20240420/libfmapi/libfmapi_class_identifier.h +0 -114
  1357. libesedb-20240420/libfmapi/libfmapi_codepage.c +0 -108
  1358. libesedb-20240420/libfmapi/libfmapi_codepage.h +0 -63
  1359. libesedb-20240420/libfmapi/libfmapi_debug.c +0 -5766
  1360. libesedb-20240420/libfmapi/libfmapi_debug.h +0 -113
  1361. libesedb-20240420/libfmapi/libfmapi_definitions.h +0 -73
  1362. libesedb-20240420/libfmapi/libfmapi_entry_identifier.c +0 -414
  1363. libesedb-20240420/libfmapi/libfmapi_entry_identifier.h +0 -78
  1364. libesedb-20240420/libfmapi/libfmapi_error.c +0 -111
  1365. libesedb-20240420/libfmapi/libfmapi_error.h +0 -74
  1366. libesedb-20240420/libfmapi/libfmapi_extern.h +0 -46
  1367. libesedb-20240420/libfmapi/libfmapi_libcerror.h +0 -50
  1368. libesedb-20240420/libfmapi/libfmapi_libcnotify.h +0 -50
  1369. libesedb-20240420/libfmapi/libfmapi_libfdatetime.h +0 -56
  1370. libesedb-20240420/libfmapi/libfmapi_libfguid.h +0 -49
  1371. libesedb-20240420/libfmapi/libfmapi_libfwnt.h +0 -58
  1372. libesedb-20240420/libfmapi/libfmapi_libuna.h +0 -60
  1373. libesedb-20240420/libfmapi/libfmapi_lzfu.c +0 -616
  1374. libesedb-20240420/libfmapi/libfmapi_lzfu.h +0 -78
  1375. libesedb-20240420/libfmapi/libfmapi_one_off_entry_identifier.c +0 -1474
  1376. libesedb-20240420/libfmapi/libfmapi_one_off_entry_identifier.h +0 -190
  1377. libesedb-20240420/libfmapi/libfmapi_property_type.c +0 -3113
  1378. libesedb-20240420/libfmapi/libfmapi_property_type.h +0 -131
  1379. libesedb-20240420/libfmapi/libfmapi_service_provider_identifier.c +0 -82
  1380. libesedb-20240420/libfmapi/libfmapi_service_provider_identifier.h +0 -48
  1381. libesedb-20240420/libfmapi/libfmapi_support.c +0 -39
  1382. libesedb-20240420/libfmapi/libfmapi_support.h +0 -47
  1383. libesedb-20240420/libfmapi/libfmapi_types.h +0 -49
  1384. libesedb-20240420/libfmapi/libfmapi_unused.h +0 -44
  1385. libesedb-20240420/libfmapi/libfmapi_value_type.c +0 -105
  1386. libesedb-20240420/libfmapi/libfmapi_value_type.h +0 -64
  1387. libesedb-20240420/libfmapi/libfmapi_x400_object_identifier.h +0 -73
  1388. libesedb-20240420/libfvalue/Makefile.in +0 -998
  1389. libesedb-20240420/libfvalue/libfvalue_binary_data.c +0 -1546
  1390. libesedb-20240420/libfvalue/libfvalue_binary_data.h +0 -114
  1391. libesedb-20240420/libfvalue/libfvalue_codepage.h +0 -103
  1392. libesedb-20240420/libfvalue/libfvalue_data_handle.c +0 -1661
  1393. libesedb-20240420/libfvalue/libfvalue_data_handle.h +0 -195
  1394. libesedb-20240420/libfvalue/libfvalue_definitions.h +0 -350
  1395. libesedb-20240420/libfvalue/libfvalue_error.c +0 -111
  1396. libesedb-20240420/libfvalue/libfvalue_error.h +0 -74
  1397. libesedb-20240420/libfvalue/libfvalue_extern.h +0 -46
  1398. libesedb-20240420/libfvalue/libfvalue_filetime.c +0 -113
  1399. libesedb-20240420/libfvalue/libfvalue_filetime.h +0 -56
  1400. libesedb-20240420/libfvalue/libfvalue_floating_point.c +0 -3456
  1401. libesedb-20240420/libfvalue/libfvalue_floating_point.h +0 -246
  1402. libesedb-20240420/libfvalue/libfvalue_integer.c +0 -2886
  1403. libesedb-20240420/libfvalue/libfvalue_integer.h +0 -261
  1404. libesedb-20240420/libfvalue/libfvalue_libcdata.h +0 -54
  1405. libesedb-20240420/libfvalue/libfvalue_libcerror.h +0 -50
  1406. libesedb-20240420/libfvalue/libfvalue_libcnotify.h +0 -50
  1407. libesedb-20240420/libfvalue/libfvalue_libfdatetime.h +0 -58
  1408. libesedb-20240420/libfvalue/libfvalue_libfguid.h +0 -51
  1409. libesedb-20240420/libfvalue/libfvalue_libfwnt.h +0 -57
  1410. libesedb-20240420/libfvalue/libfvalue_libuna.h +0 -60
  1411. libesedb-20240420/libfvalue/libfvalue_split_utf16_string.c +0 -546
  1412. libesedb-20240420/libfvalue/libfvalue_split_utf16_string.h +0 -114
  1413. libesedb-20240420/libfvalue/libfvalue_split_utf8_string.c +0 -535
  1414. libesedb-20240420/libfvalue/libfvalue_split_utf8_string.h +0 -114
  1415. libesedb-20240420/libfvalue/libfvalue_string.c +0 -3070
  1416. libesedb-20240420/libfvalue/libfvalue_string.h +0 -165
  1417. libesedb-20240420/libfvalue/libfvalue_support.c +0 -41
  1418. libesedb-20240420/libfvalue/libfvalue_support.h +0 -47
  1419. libesedb-20240420/libfvalue/libfvalue_table.c +0 -1357
  1420. libesedb-20240420/libfvalue/libfvalue_table.h +0 -136
  1421. libesedb-20240420/libfvalue/libfvalue_types.h +0 -55
  1422. libesedb-20240420/libfvalue/libfvalue_unused.h +0 -44
  1423. libesedb-20240420/libfvalue/libfvalue_utf16_string.c +0 -300
  1424. libesedb-20240420/libfvalue/libfvalue_utf16_string.h +0 -50
  1425. libesedb-20240420/libfvalue/libfvalue_utf8_string.c +0 -300
  1426. libesedb-20240420/libfvalue/libfvalue_utf8_string.h +0 -50
  1427. libesedb-20240420/libfvalue/libfvalue_value.c +0 -5241
  1428. libesedb-20240420/libfvalue/libfvalue_value.h +0 -753
  1429. libesedb-20240420/libfvalue/libfvalue_value_entry.c +0 -210
  1430. libesedb-20240420/libfvalue/libfvalue_value_entry.h +0 -65
  1431. libesedb-20240420/libfvalue/libfvalue_value_type.c +0 -1183
  1432. libesedb-20240420/libfvalue/libfvalue_value_type.h +0 -100
  1433. libesedb-20240420/libfwnt/Makefile.in +0 -966
  1434. libesedb-20240420/libfwnt/libfwnt_access_control_entry.c +0 -764
  1435. libesedb-20240420/libfwnt/libfwnt_access_control_entry.h +0 -116
  1436. libesedb-20240420/libfwnt/libfwnt_access_control_list.c +0 -518
  1437. libesedb-20240420/libfwnt/libfwnt_access_control_list.h +0 -93
  1438. libesedb-20240420/libfwnt/libfwnt_bit_stream.c +0 -308
  1439. libesedb-20240420/libfwnt/libfwnt_bit_stream.h +0 -85
  1440. libesedb-20240420/libfwnt/libfwnt_debug.c +0 -355
  1441. libesedb-20240420/libfwnt/libfwnt_debug.h +0 -53
  1442. libesedb-20240420/libfwnt/libfwnt_definitions.h +0 -112
  1443. libesedb-20240420/libfwnt/libfwnt_error.c +0 -111
  1444. libesedb-20240420/libfwnt/libfwnt_error.h +0 -74
  1445. libesedb-20240420/libfwnt/libfwnt_extern.h +0 -46
  1446. libesedb-20240420/libfwnt/libfwnt_huffman_tree.c +0 -589
  1447. libesedb-20240420/libfwnt/libfwnt_huffman_tree.h +0 -79
  1448. libesedb-20240420/libfwnt/libfwnt_libcdata.h +0 -54
  1449. libesedb-20240420/libfwnt/libfwnt_libcerror.h +0 -50
  1450. libesedb-20240420/libfwnt/libfwnt_libcnotify.h +0 -50
  1451. libesedb-20240420/libfwnt/libfwnt_locale_identifier.c +0 -470
  1452. libesedb-20240420/libfwnt/libfwnt_locale_identifier.h +0 -60
  1453. libesedb-20240420/libfwnt/libfwnt_lznt1.c +0 -560
  1454. libesedb-20240420/libfwnt/libfwnt_lznt1.h +0 -57
  1455. libesedb-20240420/libfwnt/libfwnt_lzx.c +0 -1465
  1456. libesedb-20240420/libfwnt/libfwnt_lzx.h +0 -95
  1457. libesedb-20240420/libfwnt/libfwnt_lzxpress.c +0 -1041
  1458. libesedb-20240420/libfwnt/libfwnt_lzxpress.h +0 -86
  1459. libesedb-20240420/libfwnt/libfwnt_notify.c +0 -120
  1460. libesedb-20240420/libfwnt/libfwnt_notify.h +0 -63
  1461. libesedb-20240420/libfwnt/libfwnt_security_descriptor.c +0 -1028
  1462. libesedb-20240420/libfwnt/libfwnt_security_descriptor.h +0 -116
  1463. libesedb-20240420/libfwnt/libfwnt_security_identifier.c +0 -1176
  1464. libesedb-20240420/libfwnt/libfwnt_security_identifier.h +0 -166
  1465. libesedb-20240420/libfwnt/libfwnt_support.c +0 -41
  1466. libesedb-20240420/libfwnt/libfwnt_support.h +0 -47
  1467. libesedb-20240420/libfwnt/libfwnt_types.h +0 -53
  1468. libesedb-20240420/libfwnt/libfwnt_unused.h +0 -44
  1469. libesedb-20240420/libmapidb/Makefile.in +0 -899
  1470. libesedb-20240420/libuna/Makefile.in +0 -1308
  1471. libesedb-20240420/libuna/libuna_base16_stream.c +0 -1511
  1472. libesedb-20240420/libuna/libuna_base16_stream.h +0 -93
  1473. libesedb-20240420/libuna/libuna_base32_stream.c +0 -3035
  1474. libesedb-20240420/libuna/libuna_base32_stream.h +0 -131
  1475. libesedb-20240420/libuna/libuna_base64_stream.c +0 -2832
  1476. libesedb-20240420/libuna/libuna_base64_stream.h +0 -131
  1477. libesedb-20240420/libuna/libuna_byte_stream.c +0 -633
  1478. libesedb-20240420/libuna/libuna_byte_stream.h +0 -104
  1479. libesedb-20240420/libuna/libuna_codepage_iso_8859_10.c +0 -73
  1480. libesedb-20240420/libuna/libuna_codepage_iso_8859_10.h +0 -48
  1481. libesedb-20240420/libuna/libuna_codepage_iso_8859_13.c +0 -81
  1482. libesedb-20240420/libuna/libuna_codepage_iso_8859_13.h +0 -48
  1483. libesedb-20240420/libuna/libuna_codepage_iso_8859_14.c +0 -66
  1484. libesedb-20240420/libuna/libuna_codepage_iso_8859_14.h +0 -51
  1485. libesedb-20240420/libuna/libuna_codepage_iso_8859_15.c +0 -46
  1486. libesedb-20240420/libuna/libuna_codepage_iso_8859_15.h +0 -45
  1487. libesedb-20240420/libuna/libuna_codepage_iso_8859_16.c +0 -78
  1488. libesedb-20240420/libuna/libuna_codepage_iso_8859_16.h +0 -57
  1489. libesedb-20240420/libuna/libuna_codepage_iso_8859_2.c +0 -82
  1490. libesedb-20240420/libuna/libuna_codepage_iso_8859_2.h +0 -51
  1491. libesedb-20240420/libuna/libuna_codepage_iso_8859_3.c +0 -79
  1492. libesedb-20240420/libuna/libuna_codepage_iso_8859_3.h +0 -57
  1493. libesedb-20240420/libuna/libuna_codepage_iso_8859_4.c +0 -80
  1494. libesedb-20240420/libuna/libuna_codepage_iso_8859_4.h +0 -48
  1495. libesedb-20240420/libuna/libuna_codepage_iso_8859_5.c +0 -62
  1496. libesedb-20240420/libuna/libuna_codepage_iso_8859_5.h +0 -45
  1497. libesedb-20240420/libuna/libuna_codepage_iso_8859_6.c +0 -58
  1498. libesedb-20240420/libuna/libuna_codepage_iso_8859_6.h +0 -45
  1499. libesedb-20240420/libuna/libuna_codepage_iso_8859_7.c +0 -66
  1500. libesedb-20240420/libuna/libuna_codepage_iso_8859_7.h +0 -48
  1501. libesedb-20240420/libuna/libuna_codepage_iso_8859_8.c +0 -61
  1502. libesedb-20240420/libuna/libuna_codepage_iso_8859_8.h +0 -48
  1503. libesedb-20240420/libuna/libuna_codepage_iso_8859_9.c +0 -50
  1504. libesedb-20240420/libuna/libuna_codepage_iso_8859_9.h +0 -45
  1505. libesedb-20240420/libuna/libuna_codepage_koi8_r.c +0 -392
  1506. libesedb-20240420/libuna/libuna_codepage_koi8_r.h +0 -54
  1507. libesedb-20240420/libuna/libuna_codepage_koi8_u.c +0 -424
  1508. libesedb-20240420/libuna/libuna_codepage_koi8_u.h +0 -54
  1509. libesedb-20240420/libuna/libuna_codepage_mac_arabic.c +0 -352
  1510. libesedb-20240420/libuna/libuna_codepage_mac_arabic.h +0 -54
  1511. libesedb-20240420/libuna/libuna_codepage_mac_celtic.c +0 -395
  1512. libesedb-20240420/libuna/libuna_codepage_mac_celtic.h +0 -54
  1513. libesedb-20240420/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  1514. libesedb-20240420/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  1515. libesedb-20240420/libuna/libuna_codepage_mac_croatian.c +0 -378
  1516. libesedb-20240420/libuna/libuna_codepage_mac_croatian.h +0 -54
  1517. libesedb-20240420/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  1518. libesedb-20240420/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  1519. libesedb-20240420/libuna/libuna_codepage_mac_dingbats.c +0 -347
  1520. libesedb-20240420/libuna/libuna_codepage_mac_dingbats.h +0 -54
  1521. libesedb-20240420/libuna/libuna_codepage_mac_farsi.c +0 -372
  1522. libesedb-20240420/libuna/libuna_codepage_mac_farsi.h +0 -54
  1523. libesedb-20240420/libuna/libuna_codepage_mac_gaelic.c +0 -437
  1524. libesedb-20240420/libuna/libuna_codepage_mac_gaelic.h +0 -54
  1525. libesedb-20240420/libuna/libuna_codepage_mac_greek.c +0 -305
  1526. libesedb-20240420/libuna/libuna_codepage_mac_greek.h +0 -54
  1527. libesedb-20240420/libuna/libuna_codepage_mac_icelandic.c +0 -381
  1528. libesedb-20240420/libuna/libuna_codepage_mac_icelandic.h +0 -54
  1529. libesedb-20240420/libuna/libuna_codepage_mac_inuit.c +0 -380
  1530. libesedb-20240420/libuna/libuna_codepage_mac_inuit.h +0 -54
  1531. libesedb-20240420/libuna/libuna_codepage_mac_roman.c +0 -387
  1532. libesedb-20240420/libuna/libuna_codepage_mac_roman.h +0 -54
  1533. libesedb-20240420/libuna/libuna_codepage_mac_romanian.c +0 -396
  1534. libesedb-20240420/libuna/libuna_codepage_mac_romanian.h +0 -54
  1535. libesedb-20240420/libuna/libuna_codepage_mac_russian.c +0 -317
  1536. libesedb-20240420/libuna/libuna_codepage_mac_russian.h +0 -54
  1537. libesedb-20240420/libuna/libuna_codepage_mac_symbol.c +0 -537
  1538. libesedb-20240420/libuna/libuna_codepage_mac_symbol.h +0 -59
  1539. libesedb-20240420/libuna/libuna_codepage_mac_thai.c +0 -330
  1540. libesedb-20240420/libuna/libuna_codepage_mac_thai.h +0 -59
  1541. libesedb-20240420/libuna/libuna_codepage_mac_turkish.c +0 -397
  1542. libesedb-20240420/libuna/libuna_codepage_mac_turkish.h +0 -54
  1543. libesedb-20240420/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  1544. libesedb-20240420/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  1545. libesedb-20240420/libuna/libuna_codepage_windows_1250.c +0 -313
  1546. libesedb-20240420/libuna/libuna_codepage_windows_1250.h +0 -54
  1547. libesedb-20240420/libuna/libuna_codepage_windows_1251.c +0 -301
  1548. libesedb-20240420/libuna/libuna_codepage_windows_1251.h +0 -54
  1549. libesedb-20240420/libuna/libuna_codepage_windows_1252.c +0 -287
  1550. libesedb-20240420/libuna/libuna_codepage_windows_1252.h +0 -54
  1551. libesedb-20240420/libuna/libuna_codepage_windows_1253.c +0 -291
  1552. libesedb-20240420/libuna/libuna_codepage_windows_1253.h +0 -54
  1553. libesedb-20240420/libuna/libuna_codepage_windows_1254.c +0 -348
  1554. libesedb-20240420/libuna/libuna_codepage_windows_1254.h +0 -54
  1555. libesedb-20240420/libuna/libuna_codepage_windows_1255.c +0 -328
  1556. libesedb-20240420/libuna/libuna_codepage_windows_1255.h +0 -54
  1557. libesedb-20240420/libuna/libuna_codepage_windows_1256.c +0 -372
  1558. libesedb-20240420/libuna/libuna_codepage_windows_1256.h +0 -54
  1559. libesedb-20240420/libuna/libuna_codepage_windows_1257.c +0 -303
  1560. libesedb-20240420/libuna/libuna_codepage_windows_1257.h +0 -54
  1561. libesedb-20240420/libuna/libuna_codepage_windows_1258.c +0 -349
  1562. libesedb-20240420/libuna/libuna_codepage_windows_1258.h +0 -54
  1563. libesedb-20240420/libuna/libuna_codepage_windows_874.c +0 -274
  1564. libesedb-20240420/libuna/libuna_codepage_windows_874.h +0 -54
  1565. libesedb-20240420/libuna/libuna_codepage_windows_932.c +0 -4913
  1566. libesedb-20240420/libuna/libuna_codepage_windows_932.h +0 -59
  1567. libesedb-20240420/libuna/libuna_codepage_windows_936.c +0 -7371
  1568. libesedb-20240420/libuna/libuna_codepage_windows_936.h +0 -59
  1569. libesedb-20240420/libuna/libuna_codepage_windows_949.c +0 -8168
  1570. libesedb-20240420/libuna/libuna_codepage_windows_949.h +0 -59
  1571. libesedb-20240420/libuna/libuna_codepage_windows_950.c +0 -6390
  1572. libesedb-20240420/libuna/libuna_codepage_windows_950.h +0 -59
  1573. libesedb-20240420/libuna/libuna_definitions.h +0 -436
  1574. libesedb-20240420/libuna/libuna_error.c +0 -111
  1575. libesedb-20240420/libuna/libuna_error.h +0 -74
  1576. libesedb-20240420/libuna/libuna_extern.h +0 -46
  1577. libesedb-20240420/libuna/libuna_libcerror.h +0 -50
  1578. libesedb-20240420/libuna/libuna_scsu.c +0 -64
  1579. libesedb-20240420/libuna/libuna_scsu.h +0 -45
  1580. libesedb-20240420/libuna/libuna_support.c +0 -39
  1581. libesedb-20240420/libuna/libuna_support.h +0 -49
  1582. libesedb-20240420/libuna/libuna_types.h +0 -53
  1583. libesedb-20240420/libuna/libuna_unicode_character.c +0 -5784
  1584. libesedb-20240420/libuna/libuna_unicode_character.h +0 -260
  1585. libesedb-20240420/libuna/libuna_unused.h +0 -44
  1586. libesedb-20240420/libuna/libuna_url_stream.c +0 -584
  1587. libesedb-20240420/libuna/libuna_url_stream.h +0 -71
  1588. libesedb-20240420/libuna/libuna_utf16_stream.c +0 -815
  1589. libesedb-20240420/libuna/libuna_utf16_stream.h +0 -109
  1590. libesedb-20240420/libuna/libuna_utf16_string.c +0 -3950
  1591. libesedb-20240420/libuna/libuna_utf16_string.h +0 -325
  1592. libesedb-20240420/libuna/libuna_utf32_stream.c +0 -819
  1593. libesedb-20240420/libuna/libuna_utf32_stream.h +0 -109
  1594. libesedb-20240420/libuna/libuna_utf32_string.c +0 -3808
  1595. libesedb-20240420/libuna/libuna_utf32_string.h +0 -321
  1596. libesedb-20240420/libuna/libuna_utf7_stream.c +0 -628
  1597. libesedb-20240420/libuna/libuna_utf7_stream.h +0 -98
  1598. libesedb-20240420/libuna/libuna_utf8_stream.c +0 -748
  1599. libesedb-20240420/libuna/libuna_utf8_stream.h +0 -105
  1600. libesedb-20240420/libuna/libuna_utf8_string.c +0 -4092
  1601. libesedb-20240420/libuna/libuna_utf8_string.h +0 -329
  1602. libesedb-20240420/ltmain.sh +0 -11429
  1603. libesedb-20240420/m4/common.m4 +0 -578
  1604. libesedb-20240420/m4/libbfio.m4 +0 -422
  1605. libesedb-20240420/m4/libcdata.m4 +0 -599
  1606. libesedb-20240420/m4/libcerror.m4 +0 -237
  1607. libesedb-20240420/m4/libcfile.m4 +0 -429
  1608. libesedb-20240420/m4/libclocale.m4 +0 -291
  1609. libesedb-20240420/m4/libcnotify.m4 +0 -209
  1610. libesedb-20240420/m4/libcpath.m4 +0 -344
  1611. libesedb-20240420/m4/libcsplit.m4 +0 -249
  1612. libesedb-20240420/m4/libcthreads.m4 +0 -385
  1613. libesedb-20240420/m4/libfcache.m4 +0 -266
  1614. libesedb-20240420/m4/libfdata.m4 +0 -555
  1615. libesedb-20240420/m4/libfdatetime.m4 +0 -560
  1616. libesedb-20240420/m4/libfguid.m4 +0 -210
  1617. libesedb-20240420/m4/libfmapi.m4 +0 -311
  1618. libesedb-20240420/m4/libfvalue.m4 +0 -691
  1619. libesedb-20240420/m4/libfwnt.m4 +0 -320
  1620. libesedb-20240420/m4/libmapidb.m4 +0 -156
  1621. libesedb-20240420/m4/libtool.m4 +0 -8403
  1622. libesedb-20240420/m4/libuna.m4 +0 -1044
  1623. libesedb-20240420/m4/pthread.m4 +0 -196
  1624. libesedb-20240420/m4/python.m4 +0 -208
  1625. libesedb-20240420/m4/tests.m4 +0 -33
  1626. libesedb-20240420/m4/types.m4 +0 -133
  1627. libesedb-20240420/manuals/Makefile.am +0 -12
  1628. libesedb-20240420/manuals/Makefile.in +0 -832
  1629. libesedb-20240420/manuals/esedbinfo.1 +0 -96
  1630. libesedb-20240420/manuals/libesedb.3 +0 -309
  1631. libesedb-20240420/msvscpp/Makefile.in +0 -766
  1632. libesedb-20240420/ossfuzz/Makefile.in +0 -1061
  1633. libesedb-20240420/ossfuzz/column_fuzzer.cc +0 -146
  1634. libesedb-20240420/ossfuzz/file_fuzzer.cc +0 -99
  1635. libesedb-20240420/ossfuzz/ossfuzz_libbfio.h +0 -58
  1636. libesedb-20240420/ossfuzz/ossfuzz_libesedb.h +0 -30
  1637. libesedb-20240420/ossfuzz/record_fuzzer.cc +0 -144
  1638. libesedb-20240420/ossfuzz/table_fuzzer.cc +0 -121
  1639. libesedb-20240420/po/Makevars +0 -45
  1640. libesedb-20240420/pyesedb/Makefile.am +0 -63
  1641. libesedb-20240420/pyesedb/Makefile.in +0 -1204
  1642. libesedb-20240420/pyesedb/pyesedb.c +0 -891
  1643. libesedb-20240420/pyesedb/pyesedb.h +0 -71
  1644. libesedb-20240420/pyesedb/pyesedb_column.c +0 -559
  1645. libesedb-20240420/pyesedb/pyesedb_column.h +0 -82
  1646. libesedb-20240420/pyesedb/pyesedb_column_types.c +0 -516
  1647. libesedb-20240420/pyesedb/pyesedb_column_types.h +0 -63
  1648. libesedb-20240420/pyesedb/pyesedb_columns.c +0 -452
  1649. libesedb-20240420/pyesedb/pyesedb_columns.h +0 -95
  1650. libesedb-20240420/pyesedb/pyesedb_datetime.c +0 -691
  1651. libesedb-20240420/pyesedb/pyesedb_datetime.h +0 -65
  1652. libesedb-20240420/pyesedb/pyesedb_error.c +0 -422
  1653. libesedb-20240420/pyesedb/pyesedb_error.h +0 -60
  1654. libesedb-20240420/pyesedb/pyesedb_file.c +0 -1399
  1655. libesedb-20240420/pyesedb/pyesedb_file.h +0 -136
  1656. libesedb-20240420/pyesedb/pyesedb_file_object_io_handle.c +0 -1524
  1657. libesedb-20240420/pyesedb/pyesedb_file_object_io_handle.h +0 -141
  1658. libesedb-20240420/pyesedb/pyesedb_file_types.c +0 -292
  1659. libesedb-20240420/pyesedb/pyesedb_file_types.h +0 -63
  1660. libesedb-20240420/pyesedb/pyesedb_index.c +0 -741
  1661. libesedb-20240420/pyesedb/pyesedb_index.h +0 -95
  1662. libesedb-20240420/pyesedb/pyesedb_indexes.c +0 -452
  1663. libesedb-20240420/pyesedb/pyesedb_indexes.h +0 -95
  1664. libesedb-20240420/pyesedb/pyesedb_integer.c +0 -399
  1665. libesedb-20240420/pyesedb/pyesedb_integer.h +0 -56
  1666. libesedb-20240420/pyesedb/pyesedb_libbfio.h +0 -54
  1667. libesedb-20240420/pyesedb/pyesedb_libcerror.h +0 -50
  1668. libesedb-20240420/pyesedb/pyesedb_libclocale.h +0 -50
  1669. libesedb-20240420/pyesedb/pyesedb_libesedb.h +0 -30
  1670. libesedb-20240420/pyesedb/pyesedb_long_value.c +0 -549
  1671. libesedb-20240420/pyesedb/pyesedb_long_value.h +0 -78
  1672. libesedb-20240420/pyesedb/pyesedb_multi_value.c +0 -1004
  1673. libesedb-20240420/pyesedb/pyesedb_multi_value.h +0 -94
  1674. libesedb-20240420/pyesedb/pyesedb_python.h +0 -83
  1675. libesedb-20240420/pyesedb/pyesedb_record.c +0 -1669
  1676. libesedb-20240420/pyesedb/pyesedb_record.h +0 -129
  1677. libesedb-20240420/pyesedb/pyesedb_records.c +0 -452
  1678. libesedb-20240420/pyesedb/pyesedb_records.h +0 -95
  1679. libesedb-20240420/pyesedb/pyesedb_table.c +0 -1115
  1680. libesedb-20240420/pyesedb/pyesedb_table.h +0 -116
  1681. libesedb-20240420/pyesedb/pyesedb_tables.c +0 -452
  1682. libesedb-20240420/pyesedb/pyesedb_tables.h +0 -95
  1683. libesedb-20240420/pyesedb/pyesedb_unused.h +0 -44
  1684. libesedb-20240420/pyesedb/pyesedb_value_flags.c +0 -320
  1685. libesedb-20240420/pyesedb/pyesedb_value_flags.h +0 -63
  1686. libesedb-20240420/pyproject.toml +0 -4
  1687. libesedb-20240420/setup.cfg +0 -16
  1688. libesedb-20240420/setup.cfg.in +0 -16
  1689. libesedb-20240420/setup.py +0 -293
  1690. libesedb-20240420/test-driver +0 -153
  1691. libesedb-20240420/tests/Makefile.am +0 -624
  1692. libesedb-20240420/tests/Makefile.in +0 -2438
  1693. libesedb-20240420/tests/esedb_test_block_descriptor.c +0 -311
  1694. libesedb-20240420/tests/esedb_test_block_tree.c +0 -752
  1695. libesedb-20240420/tests/esedb_test_block_tree_node.c +0 -331
  1696. libesedb-20240420/tests/esedb_test_catalog.c +0 -1281
  1697. libesedb-20240420/tests/esedb_test_catalog_definition.c +0 -1781
  1698. libesedb-20240420/tests/esedb_test_checksum.c +0 -1382
  1699. libesedb-20240420/tests/esedb_test_column.c +0 -1236
  1700. libesedb-20240420/tests/esedb_test_column_type.c +0 -128
  1701. libesedb-20240420/tests/esedb_test_compression.c +0 -1458
  1702. libesedb-20240420/tests/esedb_test_data_definition.c +0 -498
  1703. libesedb-20240420/tests/esedb_test_data_segment.c +0 -998
  1704. libesedb-20240420/tests/esedb_test_database.c +0 -417
  1705. libesedb-20240420/tests/esedb_test_error.c +0 -150
  1706. libesedb-20240420/tests/esedb_test_file.c +0 -1718
  1707. libesedb-20240420/tests/esedb_test_file_header.c +0 -880
  1708. libesedb-20240420/tests/esedb_test_functions.c +0 -562
  1709. libesedb-20240420/tests/esedb_test_functions.h +0 -66
  1710. libesedb-20240420/tests/esedb_test_getopt.c +0 -190
  1711. libesedb-20240420/tests/esedb_test_getopt.h +0 -68
  1712. libesedb-20240420/tests/esedb_test_index.c +0 -128
  1713. libesedb-20240420/tests/esedb_test_io_handle.c +0 -443
  1714. libesedb-20240420/tests/esedb_test_leaf_page_descriptor.c +0 -470
  1715. libesedb-20240420/tests/esedb_test_libbfio.h +0 -58
  1716. libesedb-20240420/tests/esedb_test_libcdata.h +0 -54
  1717. libesedb-20240420/tests/esedb_test_libcerror.h +0 -50
  1718. libesedb-20240420/tests/esedb_test_libclocale.h +0 -50
  1719. libesedb-20240420/tests/esedb_test_libcnotify.h +0 -50
  1720. libesedb-20240420/tests/esedb_test_libesedb.h +0 -30
  1721. libesedb-20240420/tests/esedb_test_libfcache.h +0 -50
  1722. libesedb-20240420/tests/esedb_test_libfdata.h +0 -54
  1723. libesedb-20240420/tests/esedb_test_libuna.h +0 -60
  1724. libesedb-20240420/tests/esedb_test_long_value.c +0 -134
  1725. libesedb-20240420/tests/esedb_test_macros.h +0 -257
  1726. libesedb-20240420/tests/esedb_test_memory.c +0 -177
  1727. libesedb-20240420/tests/esedb_test_memory.h +0 -52
  1728. libesedb-20240420/tests/esedb_test_multi_value.c +0 -150
  1729. libesedb-20240420/tests/esedb_test_notify.c +0 -229
  1730. libesedb-20240420/tests/esedb_test_page.c +0 -2247
  1731. libesedb-20240420/tests/esedb_test_page_header.c +0 -960
  1732. libesedb-20240420/tests/esedb_test_page_tree.c +0 -474
  1733. libesedb-20240420/tests/esedb_test_page_tree_key.c +0 -812
  1734. libesedb-20240420/tests/esedb_test_page_tree_value.c +0 -475
  1735. libesedb-20240420/tests/esedb_test_page_value.c +0 -307
  1736. libesedb-20240420/tests/esedb_test_record.c +0 -176
  1737. libesedb-20240420/tests/esedb_test_root_page_header.c +0 -470
  1738. libesedb-20240420/tests/esedb_test_space_tree.c +0 -116
  1739. libesedb-20240420/tests/esedb_test_space_tree_value.c +0 -470
  1740. libesedb-20240420/tests/esedb_test_support.c +0 -796
  1741. libesedb-20240420/tests/esedb_test_table.c +0 -144
  1742. libesedb-20240420/tests/esedb_test_table_definition.c +0 -393
  1743. libesedb-20240420/tests/esedb_test_tools_info_handle.c +0 -299
  1744. libesedb-20240420/tests/esedb_test_tools_output.c +0 -105
  1745. libesedb-20240420/tests/esedb_test_tools_signal.c +0 -213
  1746. libesedb-20240420/tests/esedb_test_tools_windows_search_compression.c +0 -488
  1747. libesedb-20240420/tests/esedb_test_unused.h +0 -50
  1748. libesedb-20240420/tests/pyesedb_test_file.py +0 -193
  1749. libesedb-20240420/tests/pyesedb_test_support.py +0 -108
  1750. libesedb-20240420/tests/test_esedbexport.sh +0 -200
  1751. libesedb-20240420/tests/test_esedbinfo.sh +0 -146
  1752. libesedb-20240420/tests/test_library.sh +0 -193
  1753. libesedb-20240420/tests/test_manpage.sh +0 -98
  1754. libesedb-20240420/tests/test_python_module.sh +0 -195
  1755. libesedb-20240420/tests/test_runner.sh +0 -1148
  1756. libesedb-20240420/tests/test_tools.sh +0 -193
  1757. {libesedb-20240420 → libesedb_python-20260704}/ABOUT-NLS +0 -0
  1758. {libesedb-20240420 → libesedb_python-20260704}/COPYING +0 -0
  1759. {libesedb-20240420 → libesedb_python-20260704}/COPYING.LESSER +0 -0
  1760. {libesedb-20240420 → libesedb_python-20260704}/ChangeLog +0 -0
  1761. {libesedb-20240420 → libesedb_python-20260704}/NEWS +0 -0
  1762. {libesedb-20240420 → libesedb_python-20260704}/common/Makefile.am +0 -0
  1763. {libesedb-20240420 → libesedb_python-20260704}/compile +0 -0
  1764. {libesedb-20240420 → libesedb_python-20260704}/config.rpath +0 -0
  1765. {libesedb-20240420 → libesedb_python-20260704}/depcomp +0 -0
  1766. {libesedb-20240420 → libesedb_python-20260704}/dpkg/changelog.in +0 -0
  1767. {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-dev.install +0 -0
  1768. {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-python3.install +0 -0
  1769. {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-tools.install +0 -0
  1770. {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb.install +0 -0
  1771. {libesedb-20240420 → libesedb_python-20260704}/dpkg/source/format +0 -0
  1772. {libesedb-20240420 → libesedb_python-20260704}/esedbtools/exchange.c +0 -0
  1773. {libesedb-20240420 → libesedb_python-20260704}/esedbtools/exchange.h +0 -0
  1774. {libesedb-20240420 → libesedb_python-20260704}/include/Makefile.am +0 -0
  1775. {libesedb-20240420 → libesedb_python-20260704}/install-sh +0 -0
  1776. {libesedb-20240420 → libesedb_python-20260704}/libbfio/Makefile.am +0 -0
  1777. {libesedb-20240420 → libesedb_python-20260704}/libcdata/Makefile.am +0 -0
  1778. {libesedb-20240420 → libesedb_python-20260704}/libcerror/Makefile.am +0 -0
  1779. {libesedb-20240420 → libesedb_python-20260704}/libcfile/Makefile.am +0 -0
  1780. {libesedb-20240420 → libesedb_python-20260704}/libclocale/Makefile.am +0 -0
  1781. {libesedb-20240420 → libesedb_python-20260704}/libcnotify/Makefile.am +0 -0
  1782. {libesedb-20240420 → libesedb_python-20260704}/libcpath/Makefile.am +0 -0
  1783. {libesedb-20240420 → libesedb_python-20260704}/libcsplit/Makefile.am +0 -0
  1784. {libesedb-20240420 → libesedb_python-20260704}/libcthreads/Makefile.am +0 -0
  1785. {libesedb-20240420 → libesedb_python-20260704}/libesedb/Makefile.am +0 -0
  1786. {libesedb-20240420 → libesedb_python-20260704}/libesedb.pc.in +0 -0
  1787. {libesedb-20240420 → libesedb_python-20260704}/libesedb.spec.in +0 -0
  1788. {libesedb-20240420 → libesedb_python-20260704}/libfcache/Makefile.am +0 -0
  1789. {libesedb-20240420 → libesedb_python-20260704}/libfdata/Makefile.am +0 -0
  1790. {libesedb-20240420 → libesedb_python-20260704}/libfdatetime/Makefile.am +0 -0
  1791. {libesedb-20240420 → libesedb_python-20260704}/libfguid/Makefile.am +0 -0
  1792. {libesedb-20240420 → libesedb_python-20260704}/libfmapi/Makefile.am +0 -0
  1793. {libesedb-20240420 → libesedb_python-20260704}/libfvalue/Makefile.am +0 -0
  1794. {libesedb-20240420 → libesedb_python-20260704}/libfwnt/Makefile.am +0 -0
  1795. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/Makefile.am +0 -0
  1796. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_database.c +0 -0
  1797. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_database.h +0 -0
  1798. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_definitions.h +0 -0
  1799. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_error.c +0 -0
  1800. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_error.h +0 -0
  1801. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_extern.h +0 -0
  1802. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_folder.c +0 -0
  1803. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_folder.h +0 -0
  1804. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_libcerror.h +0 -0
  1805. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_libcnotify.h +0 -0
  1806. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_support.c +0 -0
  1807. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_support.h +0 -0
  1808. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_types.h +0 -0
  1809. {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_unused.h +0 -0
  1810. {libesedb-20240420 → libesedb_python-20260704}/libuna/Makefile.am +0 -0
  1811. {libesedb-20240420 → libesedb_python-20260704}/m4/gettext.m4 +0 -0
  1812. {libesedb-20240420 → libesedb_python-20260704}/m4/host-cpu-c-abi.m4 +0 -0
  1813. {libesedb-20240420 → libesedb_python-20260704}/m4/iconv.m4 +0 -0
  1814. {libesedb-20240420 → libesedb_python-20260704}/m4/intlmacosx.m4 +0 -0
  1815. {libesedb-20240420 → libesedb_python-20260704}/m4/lib-ld.m4 +0 -0
  1816. {libesedb-20240420 → libesedb_python-20260704}/m4/lib-link.m4 +0 -0
  1817. {libesedb-20240420 → libesedb_python-20260704}/m4/lib-prefix.m4 +0 -0
  1818. {libesedb-20240420 → libesedb_python-20260704}/m4/nls.m4 +0 -0
  1819. {libesedb-20240420 → libesedb_python-20260704}/m4/po.m4 +0 -0
  1820. {libesedb-20240420 → libesedb_python-20260704}/m4/progtest.m4 +0 -0
  1821. {libesedb-20240420 → libesedb_python-20260704}/missing +0 -0
  1822. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/Makefile.am +0 -0
  1823. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_descriptor/esedb_test_block_descriptor.vcproj +0 -0
  1824. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_tree/esedb_test_block_tree.vcproj +0 -0
  1825. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_tree_node/esedb_test_block_tree_node.vcproj +0 -0
  1826. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_catalog/esedb_test_catalog.vcproj +0 -0
  1827. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_catalog_definition/esedb_test_catalog_definition.vcproj +0 -0
  1828. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_checksum/esedb_test_checksum.vcproj +0 -0
  1829. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_column/esedb_test_column.vcproj +0 -0
  1830. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_column_type/esedb_test_column_type.vcproj +0 -0
  1831. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_compression/esedb_test_compression.vcproj +0 -0
  1832. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_data_definition/esedb_test_data_definition.vcproj +0 -0
  1833. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_data_segment/esedb_test_data_segment.vcproj +0 -0
  1834. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_database/esedb_test_database.vcproj +0 -0
  1835. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_error/esedb_test_error.vcproj +0 -0
  1836. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_file/esedb_test_file.vcproj +0 -0
  1837. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_file_header/esedb_test_file_header.vcproj +0 -0
  1838. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_index/esedb_test_index.vcproj +0 -0
  1839. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_io_handle/esedb_test_io_handle.vcproj +0 -0
  1840. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_leaf_page_descriptor/esedb_test_leaf_page_descriptor.vcproj +0 -0
  1841. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_long_value/esedb_test_long_value.vcproj +0 -0
  1842. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_multi_value/esedb_test_multi_value.vcproj +0 -0
  1843. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_notify/esedb_test_notify.vcproj +0 -0
  1844. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page/esedb_test_page.vcproj +0 -0
  1845. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_header/esedb_test_page_header.vcproj +0 -0
  1846. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree/esedb_test_page_tree.vcproj +0 -0
  1847. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree_key/esedb_test_page_tree_key.vcproj +0 -0
  1848. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree_value/esedb_test_page_tree_value.vcproj +0 -0
  1849. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_value/esedb_test_page_value.vcproj +0 -0
  1850. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_record/esedb_test_record.vcproj +0 -0
  1851. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_root_page_header/esedb_test_root_page_header.vcproj +0 -0
  1852. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_space_tree/esedb_test_space_tree.vcproj +0 -0
  1853. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_space_tree_value/esedb_test_space_tree_value.vcproj +0 -0
  1854. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_support/esedb_test_support.vcproj +0 -0
  1855. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_table/esedb_test_table.vcproj +0 -0
  1856. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_table_definition/esedb_test_table_definition.vcproj +0 -0
  1857. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_info_handle/esedb_test_tools_info_handle.vcproj +0 -0
  1858. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_output/esedb_test_tools_output.vcproj +0 -0
  1859. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_signal/esedb_test_tools_signal.vcproj +0 -0
  1860. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_windows_search_compression/esedb_test_tools_windows_search_compression.vcproj +0 -0
  1861. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedbexport/esedbexport.vcproj +0 -0
  1862. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedbinfo/esedbinfo.vcproj +0 -0
  1863. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libbfio/libbfio.vcproj +0 -0
  1864. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1865. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1866. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcfile/libcfile.vcproj +0 -0
  1867. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libclocale/libclocale.vcproj +0 -0
  1868. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1869. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcpath/libcpath.vcproj +0 -0
  1870. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  1871. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1872. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libesedb/libesedb.vcproj +0 -0
  1873. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libesedb.sln +0 -0
  1874. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfcache/libfcache.vcproj +0 -0
  1875. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfdata/libfdata.vcproj +0 -0
  1876. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  1877. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfguid/libfguid.vcproj +0 -0
  1878. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfmapi/libfmapi.vcproj +0 -0
  1879. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
  1880. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
  1881. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libmapidb/libmapidb.vcproj +0 -0
  1882. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libuna/libuna.vcproj +0 -0
  1883. {libesedb-20240420 → libesedb_python-20260704}/msvscpp/pyesedb/pyesedb.vcproj +0 -0
  1884. {libesedb-20240420 → libesedb_python-20260704}/ossfuzz/Makefile.am +0 -0
  1885. {libesedb-20240420 → libesedb_python-20260704}/po/ChangeLog +0 -0
  1886. {libesedb-20240420 → libesedb_python-20260704}/po/Makefile.in.in +0 -0
  1887. {libesedb-20240420 → libesedb_python-20260704}/po/Makevars.in +0 -0
  1888. {libesedb-20240420 → libesedb_python-20260704}/po/POTFILES.in +0 -0
  1889. {libesedb-20240420 → libesedb_python-20260704}/po/Rules-quot +0 -0
  1890. {libesedb-20240420 → libesedb_python-20260704}/po/boldquot.sed +0 -0
  1891. {libesedb-20240420 → libesedb_python-20260704}/po/en@boldquot.header +0 -0
  1892. {libesedb-20240420 → libesedb_python-20260704}/po/en@quot.header +0 -0
  1893. {libesedb-20240420 → libesedb_python-20260704}/po/insert-header.sin +0 -0
  1894. {libesedb-20240420 → libesedb_python-20260704}/po/quot.sed +0 -0
  1895. {libesedb-20240420 → libesedb_python-20260704}/po/remove-potcdate.sin +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libesedb
2
+
3
+ Copyright (C) 2009-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
File without changes
@@ -0,0 +1,113 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = \
4
+ include \
5
+ common \
6
+ libcerror \
7
+ libcthreads \
8
+ libcdata \
9
+ libclocale \
10
+ libcnotify \
11
+ libcsplit \
12
+ libuna \
13
+ libcfile \
14
+ libcpath \
15
+ libbfio \
16
+ libfcache \
17
+ libfdata \
18
+ libfdatetime \
19
+ libfguid \
20
+ libfvalue \
21
+ libfwnt \
22
+ libesedb \
23
+ libfmapi \
24
+ libmapidb \
25
+ esedbtools \
26
+ pyesedb \
27
+ po \
28
+ manuals \
29
+ tests \
30
+ ossfuzz \
31
+ msvscpp
32
+
33
+ DPKG_FILES = \
34
+ dpkg/changelog \
35
+ dpkg/changelog.in \
36
+ dpkg/compat \
37
+ dpkg/control \
38
+ dpkg/copyright \
39
+ dpkg/rules \
40
+ dpkg/libesedb.install \
41
+ dpkg/libesedb-dev.install \
42
+ dpkg/libesedb-python3.install \
43
+ dpkg/libesedb-tools.install \
44
+ dpkg/source/format
45
+
46
+ GETTEXT_FILES = \
47
+ config.rpath \
48
+ po/Makevars.in
49
+
50
+ PKGCONFIG_FILES = \
51
+ libesedb.pc.in
52
+
53
+ SETUP_PY_FILES = \
54
+ _build.py \
55
+ pyproject.toml \
56
+ pyproject.toml.in
57
+
58
+ SPEC_FILES = \
59
+ libesedb.spec \
60
+ libesedb.spec.in
61
+
62
+ EXTRA_DIST = \
63
+ $(DPKG_FILES) \
64
+ $(GETTEXT_FILES) \
65
+ $(PKGCONFIG_FILES) \
66
+ $(SETUP_PY_FILES) \
67
+ $(SPEC_FILES)
68
+
69
+ DISTCLEANFILES = \
70
+ config.status \
71
+ config.cache \
72
+ config.log \
73
+ libesedb.pc \
74
+ libesedb.spec \
75
+ Makefile \
76
+ Makefile.in \
77
+ po/Makevars
78
+
79
+ pkgconfigdir = $(libdir)/pkgconfig
80
+
81
+ pkgconfig_DATA = \
82
+ libesedb.pc
83
+
84
+ check-build: all
85
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
86
+
87
+ libtool:
88
+ @LIBTOOL_DEPS@
89
+ cd $(srcdir) && $(SHELL) ./config.status --recheck
90
+
91
+ lib: library
92
+
93
+ library:
94
+ (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
95
+ (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
96
+ (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
97
+ (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
98
+ (cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
99
+ (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
100
+ (cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
101
+ (cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
102
+ (cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
103
+ (cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
104
+ (cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
105
+ (cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
106
+ (cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
107
+ (cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
108
+ (cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
109
+ (cd $(srcdir)/libfvalue && $(MAKE) $(AM_MAKEFLAGS))
110
+ (cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
111
+ (cd $(srcdir)/libesedb && $(MAKE) $(AM_MAKEFLAGS))
112
+ (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
113
+