pytsk3 20231007__tar.gz → 20250729__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 (606) hide show
  1. {pytsk3-20231007 → pytsk3-20250729}/MANIFEST.in +1 -1
  2. {pytsk3-20231007 → pytsk3-20250729}/PKG-INFO +3 -3
  3. {pytsk3-20231007 → pytsk3-20250729}/class_parser.py +8 -8
  4. pytsk3-20250729/dpkg/changelog +5 -0
  5. pytsk3-20231007/patches/sleuthkit-4.12.1-configure.ac → pytsk3-20250729/patches/sleuthkit-4.14.0-configure.ac +6 -9
  6. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.cpp +333 -2
  7. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.egg-info/PKG-INFO +3 -3
  8. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.egg-info/SOURCES.txt +186 -10
  9. {pytsk3-20231007 → pytsk3-20250729}/setup.cfg +2 -8
  10. {pytsk3-20231007 → pytsk3-20250729}/setup.py +5 -5
  11. pytsk3-20250729/sleuthkit/.github/workflows/build-unix.yml +257 -0
  12. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/.gitignore +6 -0
  13. pytsk3-20250729/sleuthkit/Makefile +1022 -0
  14. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/Makefile.am +6 -2
  15. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/Makefile.in +6 -2
  16. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/NEWS.txt +31 -0
  17. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/aclocal.m4 +30 -21
  18. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/appveyor.yml +33 -13
  19. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/nbproject/project.properties +2 -2
  20. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/config.guess +57 -13
  21. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/config.sub +160 -79
  22. pytsk3-20250729/sleuthkit/config.log +2705 -0
  23. pytsk3-20250729/sleuthkit/config.status +2328 -0
  24. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/configure +1933 -1566
  25. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/configure.ac +5 -2
  26. pytsk3-20250729/sleuthkit/libtool +12096 -0
  27. pytsk3-20250729/sleuthkit/test/tools/autotools/test_loaddb.sh +16 -0
  28. pytsk3-20250729/sleuthkit/tsk/Makefile +858 -0
  29. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/Makefile.am +3 -3
  30. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/Makefile.in +5 -4
  31. pytsk3-20250729/sleuthkit/tsk/auto/.deps/auto.Plo +1 -0
  32. pytsk3-20250729/sleuthkit/tsk/auto/.deps/auto_db.Plo +1 -0
  33. pytsk3-20250729/sleuthkit/tsk/auto/.deps/case_db.Plo +1 -0
  34. pytsk3-20250729/sleuthkit/tsk/auto/.deps/db_sqlite.Plo +1 -0
  35. pytsk3-20250729/sleuthkit/tsk/auto/.deps/guid.Plo +1 -0
  36. pytsk3-20250729/sleuthkit/tsk/auto/.deps/is_image_supported.Plo +1 -0
  37. pytsk3-20250729/sleuthkit/tsk/auto/.deps/sqlite3.Plo +1 -0
  38. pytsk3-20250729/sleuthkit/tsk/auto/.deps/tsk_db.Plo +1 -0
  39. pytsk3-20250729/sleuthkit/tsk/auto/Makefile +733 -0
  40. pytsk3-20250729/sleuthkit/tsk/auto/Makefile.in +733 -0
  41. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/auto.cpp +3 -2
  42. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/auto_db.cpp +1 -1
  43. pytsk3-20250729/sleuthkit/tsk/auto/is_image_supported.cpp +282 -0
  44. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_auto.h +11 -0
  45. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_is_image_supported.h +4 -0
  46. pytsk3-20250729/sleuthkit/tsk/base/.deps/XGetopt.Plo +1 -0
  47. pytsk3-20250729/sleuthkit/tsk/base/.deps/crc.Plo +1 -0
  48. pytsk3-20250729/sleuthkit/tsk/base/.deps/md5c.Plo +1 -0
  49. pytsk3-20250729/sleuthkit/tsk/base/.deps/mymalloc.Plo +1 -0
  50. pytsk3-20250729/sleuthkit/tsk/base/.deps/sha1c.Plo +1 -0
  51. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_endian.Plo +1 -0
  52. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_error.Plo +1 -0
  53. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_error_win32.Plo +1 -0
  54. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_list.Plo +1 -0
  55. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_lock.Plo +1 -0
  56. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_parse.Plo +1 -0
  57. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_printf.Plo +1 -0
  58. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_stack.Plo +1 -0
  59. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_unicode.Plo +1 -0
  60. pytsk3-20250729/sleuthkit/tsk/base/.deps/tsk_version.Plo +1 -0
  61. pytsk3-20250729/sleuthkit/tsk/base/Makefile +749 -0
  62. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_base.h +4 -3
  63. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_error.c +1 -0
  64. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_os.h +1 -1
  65. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/Doxyfile +2 -2
  66. pytsk3-20250729/sleuthkit/tsk/fs/.deps/apfs.Plo +1 -0
  67. pytsk3-20250729/sleuthkit/tsk/fs/.deps/apfs_compat.Plo +1 -0
  68. pytsk3-20250729/sleuthkit/tsk/fs/.deps/apfs_fs.Plo +1 -0
  69. pytsk3-20250729/sleuthkit/tsk/fs/.deps/apfs_open.Plo +1 -0
  70. pytsk3-20250729/sleuthkit/tsk/fs/.deps/dcalc_lib.Plo +1 -0
  71. pytsk3-20250729/sleuthkit/tsk/fs/.deps/dcat_lib.Plo +1 -0
  72. pytsk3-20250729/sleuthkit/tsk/fs/.deps/decmpfs.Plo +1 -0
  73. pytsk3-20250729/sleuthkit/tsk/fs/.deps/dls_lib.Plo +1 -0
  74. pytsk3-20250729/sleuthkit/tsk/fs/.deps/dstat_lib.Plo +1 -0
  75. pytsk3-20250729/sleuthkit/tsk/fs/.deps/encryptionHelper.Plo +1 -0
  76. pytsk3-20250729/sleuthkit/tsk/fs/.deps/exfatfs.Plo +1 -0
  77. pytsk3-20250729/sleuthkit/tsk/fs/.deps/exfatfs_dent.Plo +1 -0
  78. pytsk3-20250729/sleuthkit/tsk/fs/.deps/exfatfs_meta.Plo +1 -0
  79. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ext2fs.Plo +1 -0
  80. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ext2fs_dent.Plo +1 -0
  81. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ext2fs_journal.Plo +1 -0
  82. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatfs.Plo +1 -0
  83. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatfs_dent.Plo +1 -0
  84. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatfs_meta.Plo +1 -0
  85. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatfs_utils.Plo +1 -0
  86. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatxxfs.Plo +1 -0
  87. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatxxfs_dent.Plo +1 -0
  88. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fatxxfs_meta.Plo +1 -0
  89. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ffind_lib.Plo +1 -0
  90. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ffs.Plo +1 -0
  91. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ffs_dent.Plo +1 -0
  92. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fls_lib.Plo +1 -0
  93. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_attr.Plo +1 -0
  94. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_attrlist.Plo +1 -0
  95. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_block.Plo +1 -0
  96. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_dir.Plo +1 -0
  97. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_file.Plo +1 -0
  98. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_inode.Plo +1 -0
  99. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_io.Plo +1 -0
  100. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_load.Plo +1 -0
  101. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_name.Plo +1 -0
  102. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_open.Plo +1 -0
  103. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_parse.Plo +1 -0
  104. pytsk3-20250729/sleuthkit/tsk/fs/.deps/fs_types.Plo +1 -0
  105. pytsk3-20250729/sleuthkit/tsk/fs/.deps/hfs.Plo +1 -0
  106. pytsk3-20250729/sleuthkit/tsk/fs/.deps/hfs_dent.Plo +1 -0
  107. pytsk3-20250729/sleuthkit/tsk/fs/.deps/hfs_journal.Plo +1 -0
  108. pytsk3-20250729/sleuthkit/tsk/fs/.deps/hfs_unicompare.Plo +1 -0
  109. pytsk3-20250729/sleuthkit/tsk/fs/.deps/icat_lib.Plo +1 -0
  110. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ifind_lib.Plo +1 -0
  111. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ils_lib.Plo +1 -0
  112. pytsk3-20250729/sleuthkit/tsk/fs/.deps/iso9660.Plo +1 -0
  113. pytsk3-20250729/sleuthkit/tsk/fs/.deps/iso9660_dent.Plo +1 -0
  114. pytsk3-20250729/sleuthkit/tsk/fs/.deps/logical_fs.Plo +1 -0
  115. pytsk3-20250729/sleuthkit/tsk/fs/.deps/lzvn.Plo +1 -0
  116. pytsk3-20250729/sleuthkit/tsk/fs/.deps/nofs_misc.Plo +1 -0
  117. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ntfs.Plo +1 -0
  118. pytsk3-20250729/sleuthkit/tsk/fs/.deps/ntfs_dent.Plo +1 -0
  119. pytsk3-20250729/sleuthkit/tsk/fs/.deps/rawfs.Plo +1 -0
  120. pytsk3-20250729/sleuthkit/tsk/fs/.deps/swapfs.Plo +1 -0
  121. pytsk3-20250729/sleuthkit/tsk/fs/.deps/unix_misc.Plo +1 -0
  122. pytsk3-20250729/sleuthkit/tsk/fs/.deps/usn_journal.Plo +1 -0
  123. pytsk3-20250729/sleuthkit/tsk/fs/.deps/usnjls_lib.Plo +1 -0
  124. pytsk3-20250729/sleuthkit/tsk/fs/.deps/walk_cpp.Plo +1 -0
  125. pytsk3-20250729/sleuthkit/tsk/fs/.deps/yaffs.Plo +1 -0
  126. pytsk3-20250729/sleuthkit/tsk/fs/Makefile +927 -0
  127. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/Makefile.am +1 -1
  128. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/Makefile.in +31 -28
  129. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs.cpp +1 -2
  130. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_compat.cpp +5 -5
  131. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_open.cpp +2 -2
  132. pytsk3-20250729/sleuthkit/tsk/fs/encryptionHelper.cpp +182 -0
  133. pytsk3-20250729/sleuthkit/tsk/fs/encryptionHelper.h +22 -0
  134. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ext2fs.c +10 -5
  135. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatfs.c +13 -1
  136. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ffs.c +3 -1
  137. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_attrlist.c +7 -0
  138. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_io.c +14 -2
  139. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_name.c +0 -7
  140. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_open.c +38 -10
  141. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/hfs.c +2 -2
  142. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ils_lib.c +7 -9
  143. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/iso9660.c +1 -1
  144. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/logical_fs.cpp +75 -10
  145. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ntfs.c +21 -1
  146. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_fatfs.h +1 -1
  147. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_fs.h +14 -2
  148. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_fs_i.h +8 -8
  149. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_logical_fs.h +6 -2
  150. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/yaffs.cpp +2 -1
  151. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/binsrch_index.Plo +1 -0
  152. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/encase.Plo +1 -0
  153. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/hashkeeper.Plo +1 -0
  154. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/hdb_base.Plo +1 -0
  155. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/idxonly.Plo +1 -0
  156. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/md5sum.Plo +1 -0
  157. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/nsrl.Plo +1 -0
  158. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/sqlite_hdb.Plo +1 -0
  159. pytsk3-20250729/sleuthkit/tsk/hashdb/.deps/tsk_hashdb.Plo +1 -0
  160. pytsk3-20250729/sleuthkit/tsk/hashdb/Makefile +726 -0
  161. pytsk3-20250729/sleuthkit/tsk/hashdb/Makefile.in +726 -0
  162. pytsk3-20250729/sleuthkit/tsk/img/.deps/aff.Plo +1 -0
  163. pytsk3-20250729/sleuthkit/tsk/img/.deps/ewf.Plo +1 -0
  164. pytsk3-20250729/sleuthkit/tsk/img/.deps/img_io.Plo +1 -0
  165. pytsk3-20250729/sleuthkit/tsk/img/.deps/img_open.Plo +1 -0
  166. pytsk3-20250729/sleuthkit/tsk/img/.deps/img_types.Plo +1 -0
  167. pytsk3-20250729/sleuthkit/tsk/img/.deps/img_writer.Plo +1 -0
  168. pytsk3-20250729/sleuthkit/tsk/img/.deps/logical_img.Plo +1 -0
  169. pytsk3-20250729/sleuthkit/tsk/img/.deps/mult_files.Plo +1 -0
  170. pytsk3-20250729/sleuthkit/tsk/img/.deps/raw.Plo +1 -0
  171. pytsk3-20250729/sleuthkit/tsk/img/.deps/unsupported_types.Plo +1 -0
  172. pytsk3-20250729/sleuthkit/tsk/img/.deps/vhd.Plo +1 -0
  173. pytsk3-20250729/sleuthkit/tsk/img/.deps/vmdk.Plo +1 -0
  174. pytsk3-20250729/sleuthkit/tsk/img/Makefile +735 -0
  175. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/logical_img.c +6 -8
  176. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/logical_img.h +1 -1
  177. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/raw.c +7 -9
  178. pytsk3-20250729/sleuthkit/tsk/pool/.deps/apfs_pool.Plo +1 -0
  179. pytsk3-20250729/sleuthkit/tsk/pool/.deps/apfs_pool_compat.Plo +1 -0
  180. pytsk3-20250729/sleuthkit/tsk/pool/.deps/img_bfio_handle.Plo +1 -0
  181. pytsk3-20250729/sleuthkit/tsk/pool/.deps/lvm_pool.Plo +1 -0
  182. pytsk3-20250729/sleuthkit/tsk/pool/.deps/lvm_pool_compat.Plo +1 -0
  183. pytsk3-20250729/sleuthkit/tsk/pool/.deps/pool_open.Plo +1 -0
  184. pytsk3-20250729/sleuthkit/tsk/pool/.deps/pool_read.Plo +1 -0
  185. pytsk3-20250729/sleuthkit/tsk/pool/.deps/pool_types.Plo +1 -0
  186. pytsk3-20250729/sleuthkit/tsk/pool/Makefile +723 -0
  187. pytsk3-20250729/sleuthkit/tsk/stamp-h1 +1 -0
  188. pytsk3-20250729/sleuthkit/tsk/tsk_config.h +279 -0
  189. pytsk3-20250729/sleuthkit/tsk/tsk_incs.h +13 -0
  190. pytsk3-20250729/sleuthkit/tsk/util/.deps/crypto.Plo +1 -0
  191. pytsk3-20250729/sleuthkit/tsk/util/.deps/detect_encryption.Plo +1 -0
  192. pytsk3-20250729/sleuthkit/tsk/util/.deps/file_system_utils.Plo +1 -0
  193. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/BitlockerParser.Plo +1 -0
  194. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/BitlockerUtils.Plo +1 -0
  195. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/DataTypes.Plo +1 -0
  196. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataEntry.Plo +1 -0
  197. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataUtils.Plo +1 -0
  198. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueAesCcmEncryptedKey.Plo +1 -0
  199. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueKey.Plo +1 -0
  200. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueOffsetAndSize.Plo +1 -0
  201. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueStretchKey.Plo +1 -0
  202. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueUnicode.Plo +1 -0
  203. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/.deps/MetadataValueVolumeMasterKey.Plo +1 -0
  204. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/BitlockerParser.cpp +1579 -0
  205. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/BitlockerParser.h +229 -0
  206. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.cpp +151 -0
  207. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/BitlockerUtils.h +28 -0
  208. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/DataTypes.cpp +318 -0
  209. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/DataTypes.h +95 -0
  210. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/Makefile +695 -0
  211. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/Makefile.am +12 -0
  212. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/Makefile.in +695 -0
  213. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataEntry.cpp +91 -0
  214. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataEntry.h +55 -0
  215. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataUtils.cpp +137 -0
  216. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataUtils.h +32 -0
  217. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValue.h +61 -0
  218. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.cpp +260 -0
  219. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueAesCcmEncryptedKey.h +43 -0
  220. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.cpp +35 -0
  221. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueKey.h +49 -0
  222. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.cpp +25 -0
  223. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueOffsetAndSize.h +35 -0
  224. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.cpp +111 -0
  225. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueStretchKey.h +36 -0
  226. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.cpp +31 -0
  227. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueUnicode.h +30 -0
  228. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.cpp +49 -0
  229. pytsk3-20250729/sleuthkit/tsk/util/Bitlocker/MetadataValueVolumeMasterKey.h +45 -0
  230. pytsk3-20250729/sleuthkit/tsk/util/Makefile +701 -0
  231. pytsk3-20250729/sleuthkit/tsk/vs/.deps/bsd.Plo +1 -0
  232. pytsk3-20250729/sleuthkit/tsk/vs/.deps/dos.Plo +1 -0
  233. pytsk3-20250729/sleuthkit/tsk/vs/.deps/gpt.Plo +1 -0
  234. pytsk3-20250729/sleuthkit/tsk/vs/.deps/mac.Plo +1 -0
  235. pytsk3-20250729/sleuthkit/tsk/vs/.deps/mm_io.Plo +1 -0
  236. pytsk3-20250729/sleuthkit/tsk/vs/.deps/mm_open.Plo +1 -0
  237. pytsk3-20250729/sleuthkit/tsk/vs/.deps/mm_part.Plo +1 -0
  238. pytsk3-20250729/sleuthkit/tsk/vs/.deps/mm_types.Plo +1 -0
  239. pytsk3-20250729/sleuthkit/tsk/vs/.deps/sun.Plo +1 -0
  240. pytsk3-20250729/sleuthkit/tsk/vs/.indent.pro +1 -0
  241. pytsk3-20250729/sleuthkit/tsk/vs/Makefile +684 -0
  242. {pytsk3-20231007 → pytsk3-20250729}/tsk3.cpp +0 -14
  243. pytsk3-20231007/.github/workflows/build.yml +0 -83
  244. pytsk3-20231007/dpkg/changelog +0 -5
  245. pytsk3-20231007/make_dist.sh +0 -51
  246. pytsk3-20231007/pylintrc +0 -274
  247. pytsk3-20231007/sleuthkit/tsk/auto/is_image_supported.cpp +0 -168
  248. pytsk3-20231007/tests/__init__.py +0 -15
  249. pytsk3-20231007/tests/fs_info.py +0 -164
  250. pytsk3-20231007/tests/img_info.py +0 -191
  251. pytsk3-20231007/tests/volume_info.py +0 -211
  252. pytsk3-20231007/tox.ini +0 -19
  253. {pytsk3-20231007 → pytsk3-20250729}/AUTHORS +0 -0
  254. {pytsk3-20231007 → pytsk3-20250729}/LICENSE +0 -0
  255. {pytsk3-20231007 → pytsk3-20250729}/README +0 -0
  256. {pytsk3-20231007 → pytsk3-20250729}/aff4_errors.h +0 -0
  257. {pytsk3-20231007 → pytsk3-20250729}/class.cpp +0 -0
  258. {pytsk3-20231007 → pytsk3-20250729}/class.h +0 -0
  259. {pytsk3-20231007 → pytsk3-20250729}/dpkg/compat +0 -0
  260. {pytsk3-20231007 → pytsk3-20250729}/dpkg/control +0 -0
  261. {pytsk3-20231007 → pytsk3-20250729}/dpkg/copyright +0 -0
  262. {pytsk3-20231007 → pytsk3-20250729}/dpkg/python-pytsk3.docs +0 -0
  263. {pytsk3-20231007 → pytsk3-20250729}/dpkg/python3-pytsk3.docs +0 -0
  264. {pytsk3-20231007 → pytsk3-20250729}/dpkg/rules +0 -0
  265. {pytsk3-20231007 → pytsk3-20250729}/dpkg/source/format +0 -0
  266. {pytsk3-20231007 → pytsk3-20250729}/dpkg/source/options +0 -0
  267. {pytsk3-20231007 → pytsk3-20250729}/error.cpp +0 -0
  268. {pytsk3-20231007 → pytsk3-20250729}/generate_bindings.py +0 -0
  269. {pytsk3-20231007 → pytsk3-20250729}/lexer.py +0 -0
  270. {pytsk3-20231007 → pytsk3-20250729}/misc.h +0 -0
  271. {pytsk3-20231007 → pytsk3-20250729}/pyproject.toml +0 -0
  272. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.egg-info/dependency_links.txt +0 -0
  273. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.egg-info/top_level.txt +0 -0
  274. {pytsk3-20231007 → pytsk3-20250729}/pytsk3.h +0 -0
  275. {pytsk3-20231007 → pytsk3-20250729}/run_tests.py +0 -0
  276. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/.git +0 -0
  277. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/.gitattributes +0 -0
  278. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/.travis.yml +0 -0
  279. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/API-CHANGES.txt +0 -0
  280. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/ChangeLog.txt +0 -0
  281. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/INSTALL.txt +0 -0
  282. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/README.md +0 -0
  283. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/README_win32.txt +0 -0
  284. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/bootstrap +0 -0
  285. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/Makefile.am +0 -0
  286. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/README.md +0 -0
  287. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/build.xml +0 -0
  288. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/ivy.xml +0 -0
  289. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/ivysettings.xml +0 -0
  290. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/manifest.mf +0 -0
  291. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/nbproject/build-impl.xml +0 -0
  292. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/nbproject/project.xml +0 -0
  293. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Account.java +0 -0
  294. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/AccountAuthentication.java +0 -0
  295. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Action.java +0 -0
  296. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ActionArgument.java +0 -0
  297. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Annotation.java +0 -0
  298. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Application.java +0 -0
  299. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ApplicationAccount.java +0 -0
  300. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Assertion.java +0 -0
  301. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Attachment.java +0 -0
  302. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankAssertionNode.java +0 -0
  303. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankIdentityNode.java +0 -0
  304. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankLocationNode.java +0 -0
  305. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankOrganizationNode.java +0 -0
  306. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankPersonNode.java +0 -0
  307. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankRelationshipNode.java +0 -0
  308. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BlankTraceNode.java +0 -0
  309. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserBookmark.java +0 -0
  310. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/BrowserCookie.java +0 -0
  311. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CalendarEntry.java +0 -0
  312. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoExporter.java +0 -0
  313. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDService.java +0 -0
  314. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CaseUcoUUIDServiceImpl.java +0 -0
  315. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ComputerSpecification.java +0 -0
  316. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Contact.java +0 -0
  317. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentData.java +0 -0
  318. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ContentNotExportableException.java +0 -0
  319. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/CyberItem.java +0 -0
  320. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Device.java +0 -0
  321. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DigitalAccount.java +0 -0
  322. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Domain.java +0 -0
  323. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/DomainName.java +0 -0
  324. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailAddress.java +0 -0
  325. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EmailMessage.java +0 -0
  326. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/EnvironmentVariable.java +0 -0
  327. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/ExtractedString.java +0 -0
  328. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Facet.java +0 -0
  329. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FacetDeserializer.java +0 -0
  330. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/File.java +0 -0
  331. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/FileSystem.java +0 -0
  332. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/HTTPConnection.java +0 -0
  333. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Hash.java +0 -0
  334. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Identity.java +0 -0
  335. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/IdentityFacet.java +0 -0
  336. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/LatLongCoordinates.java +0 -0
  337. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Location.java +0 -0
  338. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MACAddress.java +0 -0
  339. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Message.java +0 -0
  340. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/MobileDevice.java +0 -0
  341. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Note.java +0 -0
  342. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/OperatingSystem.java +0 -0
  343. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Organization.java +0 -0
  344. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PathRelation.java +0 -0
  345. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Person.java +0 -0
  346. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneAccount.java +0 -0
  347. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/PhoneCall.java +0 -0
  348. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Relationship.java +0 -0
  349. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SIMCard.java +0 -0
  350. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SMSMessage.java +0 -0
  351. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/SimpleAddress.java +0 -0
  352. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Software.java +0 -0
  353. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/StandardAttributeTypes.java +0 -0
  354. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Trace.java +0 -0
  355. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/URL.java +0 -0
  356. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/UcoObject.java +0 -0
  357. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/Volume.java +0 -0
  358. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsAccount.java +0 -0
  359. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsComputerSpecification.java +0 -0
  360. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WindowsRegistryValue.java +0 -0
  361. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/src/org/sleuthkit/caseuco/WirelessNetworkConnection.java +0 -0
  362. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/FacetDeserializerTests.java +0 -0
  363. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/case-uco/java/test/org/sleuthkit/caseuco/TestSuite.java +0 -0
  364. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/compile +0 -0
  365. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/depcomp +0 -0
  366. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/install-sh +0 -0
  367. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/ltmain.sh +0 -0
  368. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/config/missing +0 -0
  369. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/db_diff/tskdbdiff.py +0 -0
  370. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/Apache-LICENSE-2.0.txt +0 -0
  371. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/GNUv2-COPYING +0 -0
  372. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/GNUv3-COPYING +0 -0
  373. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/IBM-LICENSE +0 -0
  374. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/README.md +0 -0
  375. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/bsd.txt +0 -0
  376. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/cpl1.0.txt +0 -0
  377. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/licenses/mit.txt +0 -0
  378. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ac_prog_java.m4 +0 -0
  379. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ac_prog_java_works.m4 +0 -0
  380. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ac_prog_javac.m4 +0 -0
  381. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ac_prog_javac_works.m4 +0 -0
  382. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ax_check_openssl.m4 +0 -0
  383. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ax_cxx_compile_stdcxx.m4 +0 -0
  384. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ax_jni_include_dir.m4 +0 -0
  385. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ax_pkg_check_modules.m4 +0 -0
  386. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ax_pthread.m4 +0 -0
  387. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/cppunit.m4 +0 -0
  388. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/libtool.m4 +0 -0
  389. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ltoptions.m4 +0 -0
  390. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ltsugar.m4 +0 -0
  391. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/ltversion.m4 +0 -0
  392. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/lt~obsolete.m4 +0 -0
  393. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/m4/tsk_opt_dep_check.m4 +0 -0
  394. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/ruleset.xml +0 -0
  395. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/travis_install_libs.sh +0 -0
  396. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/.indent.pro +0 -0
  397. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/Makefile.am +0 -0
  398. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/case_db.cpp +0 -0
  399. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/db_sqlite.cpp +0 -0
  400. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/guid.cpp +0 -0
  401. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/guid.h +0 -0
  402. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/sqlite3.c +0 -0
  403. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/sqlite3.h +0 -0
  404. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_auto_i.h +0 -0
  405. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_case_db.h +0 -0
  406. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_db.cpp +0 -0
  407. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_db.h +0 -0
  408. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/auto/tsk_db_sqlite.h +0 -0
  409. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/.indent.pro +0 -0
  410. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/Makefile.am +0 -0
  411. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/Makefile.in +0 -0
  412. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/XGetopt.c +0 -0
  413. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/crc.c +0 -0
  414. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/crc.h +0 -0
  415. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/md5c.c +0 -0
  416. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/mymalloc.c +0 -0
  417. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/sha1c.c +0 -0
  418. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_base_i.h +0 -0
  419. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_endian.c +0 -0
  420. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_error_win32.cpp +0 -0
  421. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_list.c +0 -0
  422. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_lock.c +0 -0
  423. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_parse.c +0 -0
  424. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_printf.c +0 -0
  425. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_stack.c +0 -0
  426. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_unicode.c +0 -0
  427. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_unicode.h +0 -0
  428. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/base/tsk_version.c +0 -0
  429. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/auto.dox +0 -0
  430. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/base.dox +0 -0
  431. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/basics.dox +0 -0
  432. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/cpp.dox +0 -0
  433. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/footer.html +0 -0
  434. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/fs.dox +0 -0
  435. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/hashdb.dox +0 -0
  436. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/img.dox +0 -0
  437. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/main.dox +0 -0
  438. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/pool.dox +0 -0
  439. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/docs/vs.dox +0 -0
  440. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/.indent.pro +0 -0
  441. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_compat.hpp +0 -0
  442. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_fs.cpp +0 -0
  443. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_fs.h +0 -0
  444. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/apfs_fs.hpp +0 -0
  445. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/dcalc_lib.c +0 -0
  446. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/dcat_lib.c +0 -0
  447. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/decmpfs.c +0 -0
  448. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/decmpfs.h +0 -0
  449. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/dls_lib.c +0 -0
  450. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/dstat_lib.c +0 -0
  451. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/exfatfs.c +0 -0
  452. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/exfatfs_dent.c +0 -0
  453. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/exfatfs_meta.c +0 -0
  454. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ext2fs_dent.c +0 -0
  455. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ext2fs_journal.c +0 -0
  456. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatfs_dent.cpp +0 -0
  457. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatfs_meta.c +0 -0
  458. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatfs_utils.c +0 -0
  459. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatxxfs.c +0 -0
  460. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatxxfs_dent.c +0 -0
  461. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fatxxfs_meta.c +0 -0
  462. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ffind_lib.c +0 -0
  463. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ffs_dent.c +0 -0
  464. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fls_lib.c +0 -0
  465. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_attr.c +0 -0
  466. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_block.c +0 -0
  467. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_dir.c +0 -0
  468. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_file.c +0 -0
  469. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_inode.c +0 -0
  470. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_load.c +0 -0
  471. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_parse.c +0 -0
  472. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/fs_types.c +0 -0
  473. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/hfs_dent.c +0 -0
  474. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/hfs_journal.c +0 -0
  475. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/hfs_unicompare.c +0 -0
  476. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/icat_lib.c +0 -0
  477. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ifind_lib.c +0 -0
  478. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/iso9660_dent.c +0 -0
  479. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/lzvn.c +0 -0
  480. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/lzvn.h +0 -0
  481. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/nofs_misc.c +0 -0
  482. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/ntfs_dent.cpp +0 -0
  483. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/rawfs.c +0 -0
  484. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/swapfs.c +0 -0
  485. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_apfs.h +0 -0
  486. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_apfs.hpp +0 -0
  487. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_exfatfs.h +0 -0
  488. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_ext2fs.h +0 -0
  489. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_fatxxfs.h +0 -0
  490. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_ffs.h +0 -0
  491. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_hfs.h +0 -0
  492. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_iso9660.h +0 -0
  493. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_ntfs.h +0 -0
  494. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/tsk_yaffs.h +0 -0
  495. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/unix_misc.c +0 -0
  496. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/usn_journal.c +0 -0
  497. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/usnjls_lib.c +0 -0
  498. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/fs/walk_cpp.cpp +0 -0
  499. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/.indent.pro +0 -0
  500. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/Makefile.am +0 -0
  501. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/binsrch_index.cpp +0 -0
  502. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/encase.c +0 -0
  503. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/hashkeeper.c +0 -0
  504. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/hdb_base.c +0 -0
  505. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/idxonly.c +0 -0
  506. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/md5sum.c +0 -0
  507. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/nsrl.c +0 -0
  508. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/sqlite_hdb.cpp +0 -0
  509. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/tsk_hash_info.h +0 -0
  510. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/tsk_hashdb.c +0 -0
  511. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/tsk_hashdb.h +0 -0
  512. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/hashdb/tsk_hashdb_i.h +0 -0
  513. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/.indent.pro +0 -0
  514. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/Makefile.am +0 -0
  515. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/Makefile.in +0 -0
  516. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/aff.c +0 -0
  517. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/aff.h +0 -0
  518. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/ewf.cpp +0 -0
  519. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/ewf.h +0 -0
  520. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/img_io.c +0 -0
  521. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/img_open.cpp +0 -0
  522. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/img_types.c +0 -0
  523. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/img_writer.cpp +0 -0
  524. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/img_writer.h +0 -0
  525. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/mult_files.c +0 -0
  526. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/pool.hpp +0 -0
  527. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/raw.h +0 -0
  528. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/tsk_img.h +0 -0
  529. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/tsk_img_i.h +0 -0
  530. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/unsupported_types.c +0 -0
  531. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/unsupported_types.h +0 -0
  532. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/vhd.c +0 -0
  533. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/vhd.h +0 -0
  534. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/vmdk.c +0 -0
  535. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/img/vmdk.h +0 -0
  536. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/libtsk.h +0 -0
  537. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/.indent.pro +0 -0
  538. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/Makefile.am +0 -0
  539. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/Makefile.in +0 -0
  540. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/apfs_pool.cpp +0 -0
  541. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/apfs_pool_compat.cpp +0 -0
  542. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/apfs_pool_compat.hpp +0 -0
  543. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/img_bfio_handle.c +0 -0
  544. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/img_bfio_handle.h +0 -0
  545. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/lvm_pool.cpp +0 -0
  546. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/lvm_pool_compat.cpp +0 -0
  547. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/lvm_pool_compat.hpp +0 -0
  548. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/pool_compat.hpp +0 -0
  549. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/pool_open.cpp +0 -0
  550. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/pool_read.cpp +0 -0
  551. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/pool_types.cpp +0 -0
  552. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/tsk_apfs.h +0 -0
  553. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/tsk_apfs.hpp +0 -0
  554. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/tsk_lvm.hpp +0 -0
  555. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/tsk_pool.h +0 -0
  556. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/pool/tsk_pool.hpp +0 -0
  557. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/default.sort +0 -0
  558. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/freebsd.sort +0 -0
  559. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/images.sort +0 -0
  560. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/linux.sort +0 -0
  561. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/openbsd.sort +0 -0
  562. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/solaris.sort +0 -0
  563. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/sorter/windows.sort +0 -0
  564. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/tsk.pc.in +0 -0
  565. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/tsk_config.h.in +0 -0
  566. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/tsk_tools_i.h +0 -0
  567. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/.indent.pro +0 -0
  568. {pytsk3-20231007/sleuthkit/tsk/vs → pytsk3-20250729/sleuthkit/tsk/util/Bitlocker}/.indent.pro +0 -0
  569. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/Makefile.am +0 -0
  570. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/Makefile.in +0 -0
  571. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/crypto.cpp +0 -0
  572. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/crypto.hpp +0 -0
  573. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/detect_encryption.c +0 -0
  574. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/detect_encryption.h +0 -0
  575. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/file_system_utils.c +0 -0
  576. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/file_system_utils.h +0 -0
  577. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/lw_shared_ptr.hpp +0 -0
  578. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/util/span.hpp +0 -0
  579. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/Makefile.am +0 -0
  580. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/Makefile.in +0 -0
  581. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/bsd.c +0 -0
  582. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/dos.c +0 -0
  583. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/gpt.c +0 -0
  584. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/mac.c +0 -0
  585. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/mm_io.c +0 -0
  586. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/mm_open.c +0 -0
  587. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/mm_part.c +0 -0
  588. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/mm_types.c +0 -0
  589. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/sun.c +0 -0
  590. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_bsd.h +0 -0
  591. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_dos.h +0 -0
  592. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_gpt.h +0 -0
  593. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_mac.h +0 -0
  594. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_sun.h +0 -0
  595. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_vs.h +0 -0
  596. {pytsk3-20231007 → pytsk3-20250729}/sleuthkit/tsk/vs/tsk_vs_i.h +0 -0
  597. {pytsk3-20231007 → pytsk3-20250729}/talloc/LICENSE +0 -0
  598. {pytsk3-20231007 → pytsk3-20250729}/talloc/README +0 -0
  599. {pytsk3-20231007 → pytsk3-20250729}/talloc/replace.h +0 -0
  600. {pytsk3-20231007 → pytsk3-20250729}/talloc/talloc.c +0 -0
  601. {pytsk3-20231007 → pytsk3-20250729}/talloc/talloc.h +0 -0
  602. {pytsk3-20231007 → pytsk3-20250729}/test_data/bogus.raw +0 -0
  603. {pytsk3-20231007 → pytsk3-20250729}/test_data/image.raw +0 -0
  604. {pytsk3-20231007 → pytsk3-20250729}/test_data/tsk_volume_system.raw +0 -0
  605. {pytsk3-20231007 → pytsk3-20250729}/tests/test_lib.py +0 -0
  606. {pytsk3-20231007 → pytsk3-20250729}/tsk3.h +0 -0
@@ -7,7 +7,7 @@ exclude .git .gitignore .gitmodules
7
7
  exclude .travis.yml
8
8
  exclude API-CHANGES.txt config.log ruleset.xml setupDevRepos.py travis_build.sh
9
9
  recursive-include dpkg *
10
- recursive-include patches *.patch
10
+ recursive-include patches *
11
11
  recursive-include sleuthkit *
12
12
  recursive-exclude sleuthkit/autom4te.cache *
13
13
  recursive-exclude sleuthkit/bindings *
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pytsk3
3
- Version: 20231007
3
+ Version: 20250729
4
4
  Summary: Python bindings for the SleuthKit
5
5
  Home-page: https://github.com/py4n6/pytsk
6
6
  Author: Michael Cohen
@@ -10,6 +10,6 @@ Maintainer-email: joachim.metz@gmail.com
10
10
  License: Apache License, Version 2.0
11
11
  Classifier: Development Status :: 3 - Alpha
12
12
  Classifier: Programming Language :: Python
13
- Requires-Python: >=3.7
13
+ Requires-Python: >=3.8
14
14
 
15
15
  Python bindings for the SleuthKit
@@ -235,7 +235,7 @@ import lexer
235
235
  DEBUG = 0
236
236
 
237
237
  # The pytsk3 version.
238
- VERSION = "20231007"
238
+ VERSION = "20250729"
239
239
 
240
240
  # These functions are used to manage library memory.
241
241
  FREE = "aff4_free"
@@ -2315,8 +2315,8 @@ class ResultException(object):
2315
2315
 
2316
2316
 
2317
2317
  class Method(object):
2318
- default_re = re.compile("DEFAULT\(([A-Z_a-z0-9]+)\) =(.+);")
2319
- exception_re = re.compile("RAISES\(([^,]+),\s*([^\)]+)\) =(.+);")
2318
+ default_re = re.compile(r"DEFAULT\(([A-Z_a-z0-9]+)\) =(.+);")
2319
+ exception_re = re.compile(r"RAISES\(([^,]+),\s*([^\)]+)\) =(.+);")
2320
2320
  typedefed_re = re.compile(r"struct (.+)_t \*")
2321
2321
 
2322
2322
  def __init__(
@@ -4117,11 +4117,11 @@ class HeaderParser(lexer.SelfFeederMixIn):
4117
4117
  ["CCLASS", "END_CCLASS", "END_CCLASS,POP_STATE", None],
4118
4118
 
4119
4119
  # Recognize struct definitions (With name)
4120
- ["INITIAL", "([A-Z_a-z0-9 ]+)?struct\s+([A-Z_a-z0-9]+)\s+{",
4120
+ ["INITIAL", r"([A-Z_a-z0-9 ]+)?struct\s+([A-Z_a-z0-9]+)\s+{",
4121
4121
  "PUSH_STATE,STRUCT_START", "STRUCT"],
4122
4122
 
4123
4123
  # Without name (using typedef)
4124
- ["INITIAL", "typedef\s+struct\s+{",
4124
+ ["INITIAL", r"typedef\s+struct\s+{",
4125
4125
  "PUSH_STATE,TYPEDEF_STRUCT_START", "STRUCT"],
4126
4126
 
4127
4127
  ["STRUCT", r"^\s*([0-9A-Z_a-z ]+\s+\*?)\s*([A-Z_a-z0-9]+)(?:\[([A-Z_a-z0-9]+)\])?\s*;",
@@ -4131,13 +4131,13 @@ class HeaderParser(lexer.SelfFeederMixIn):
4131
4131
  "STRUCT_ATTRIBUTE_PTR", None],
4132
4132
 
4133
4133
  # Struct ended with typedef
4134
- ["STRUCT", "}\s+([0-9A-Za-z_]+);", "POP_STATE,TYPEDEF_STRUCT_END", None],
4134
+ ["STRUCT", r"}\s+([0-9A-Za-z_]+);", "POP_STATE,TYPEDEF_STRUCT_END", None],
4135
4135
  ["STRUCT", "}", "POP_STATE,STRUCT_END", None],
4136
4136
 
4137
4137
  # Handle recursive struct or union definition (At the moment
4138
4138
  # we cant handle them at all)
4139
- ["(RECURSIVE_)?STRUCT", "(struct|union)\s+([_A-Za-z0-9]+)?\s*{", "PUSH_STATE", "RECURSIVE_STRUCT"],
4140
- ["RECURSIVE_STRUCT", "}\s+[0-9A-Za-z]+", "POP_STATE", None],
4139
+ ["(RECURSIVE_)?STRUCT", r"(struct|union)\s+([_A-Za-z0-9]+)?\s*{", "PUSH_STATE", "RECURSIVE_STRUCT"],
4140
+ ["RECURSIVE_STRUCT", r"}\s+[0-9A-Za-z]+", "POP_STATE", None],
4141
4141
  ["RECURSIVE_STRUCT", "};", "POP_STATE", None],
4142
4142
 
4143
4143
  # Process enums (2 forms - named and typedefed)
@@ -0,0 +1,5 @@
1
+ pytsk3 (20250729-1) unstable; urgency=low
2
+
3
+ * Auto-generated
4
+
5
+ -- Joachim Metz <joachim.metz@gmail.com> Tue, 29 Jul 2025 07:05:03 -0100
@@ -1,15 +1,12 @@
1
1
  diff --git a/configure.ac b/configure.ac
2
- index 94c0c3b7..354e666e 100644
2
+ index 447c0a5bb..d25b5b5e2 100644
3
3
  --- a/configure.ac
4
4
  +++ b/configure.ac
5
- @@ -407,31 +407,8 @@ AC_CONFIG_FILES([
6
- tsk/img/Makefile
7
- tsk/vs/Makefile
8
- tsk/fs/Makefile
9
- - tsk/hashdb/Makefile
10
- - tsk/auto/Makefile
5
+ @@ -333,28 +333,7 @@ AC_CONFIG_FILES([
6
+ tsk/auto/Makefile
11
7
  tsk/pool/Makefile
12
- - tsk/util/Makefile
8
+ tsk/util/Makefile
9
+ - tsk/util/Bitlocker/Makefile
13
10
  - tools/Makefile
14
11
  - tools/imgtools/Makefile
15
12
  - tools/vstools/Makefile
@@ -31,7 +28,7 @@ index 94c0c3b7..354e666e 100644
31
28
  - case-uco/java/Makefile
32
29
  - unit_tests/Makefile
33
30
  - unit_tests/base/Makefile])
34
- + tsk/util/Makefile])
31
+ + tsk/util/Bitlocker/Makefile])
35
32
 
36
33
  AC_OUTPUT
37
34
 
@@ -296,6 +296,10 @@ Struct TSK_FS_DIR:
296
296
  TSK_FS_DIR_WALK_FLAG_RECURSE
297
297
  TSK_FS_DIR_WALK_FLAG_NOORPHAN
298
298
 
299
+ Enum TSK_FS_ENCRYPTION_TYPE_ENUM:
300
+ TSK_FS_ENCRYPTION_TYPE_NONE
301
+ TSK_FS_ENCRYPTION_TYPE_BITLOCKER
302
+
299
303
  Enum TSK_FS_FFIND_FLAG_ENUM:
300
304
  TSK_FS_FFIND_ALL
301
305
 
@@ -376,6 +380,8 @@ Struct TSK_FS_INFO:
376
380
  uint8_t : fs_id
377
381
  uint64_t : fs_id_used
378
382
  TSK_ENDIAN_ENUM : endian
383
+ TSK_FS_ENCRYPTION_TYPE_ENUM : encryption_type
384
+
379
385
  TSK_FS_DIR * : orphan_dir
380
386
 
381
387
 
@@ -641,6 +647,7 @@ Constants:
641
647
  TSK_ERR_FS
642
648
  TSK_ERR_FS_ARG
643
649
  TSK_ERR_FS_ATTR_NOTFOUND
650
+ TSK_ERR_FS_BITLOCKER_ERROR
644
651
  TSK_ERR_FS_BLK_NUM
645
652
  TSK_ERR_FS_CORRUPT
646
653
  TSK_ERR_FS_ENCRYPTED
@@ -791,6 +798,8 @@ Constants:
791
798
  TSK_FS_DIR_WALK_FLAG_NOORPHAN
792
799
  TSK_FS_DIR_WALK_FLAG_RECURSE
793
800
  TSK_FS_DIR_WALK_FLAG_UNALLOC
801
+ TSK_FS_ENCRYPTION_TYPE_BITLOCKER
802
+ TSK_FS_ENCRYPTION_TYPE_NONE
794
803
  TSK_FS_FFIND_ALL
795
804
  TSK_FS_FILE_READ_FLAG_NOID
796
805
  TSK_FS_FILE_READ_FLAG_NONE
@@ -1045,7 +1054,7 @@ static struct python_wrapper_map_t {
1045
1054
  Object class_ref;
1046
1055
  PyTypeObject *python_type;
1047
1056
  void (*initialize_proxies)(Gen_wrapper self, void *item);
1048
- } python_wrappers[67];
1057
+ } python_wrappers[68];
1049
1058
 
1050
1059
  /* Create the relevant wrapper from the item based on the lookup table.
1051
1060
  */
@@ -2849,6 +2858,36 @@ int TSK_FS_ISTAT_FLAG_ENUM_init_type(
2849
2858
  static int pyTSK_FS_ISTAT_FLAG_ENUM_init(pyTSK_FS_ISTAT_FLAG_ENUM *self, PyObject *args, PyObject *kwds)
2850
2859
  ;
2851
2860
  static void TSK_FS_ISTAT_FLAG_ENUM_dealloc(pyTSK_FS_ISTAT_FLAG_ENUM *self);
2861
+ /******************** TSK_FS_ENCRYPTION_TYPE_ENUM ***********************/
2862
+ typedef struct {
2863
+ PyObject_HEAD
2864
+ PyObject *value;
2865
+ } pyTSK_FS_ENCRYPTION_TYPE_ENUM;
2866
+
2867
+ int TSK_FS_ENCRYPTION_TYPE_ENUM_init_type(
2868
+ PyTypeObject *type_object )
2869
+ {
2870
+ type_object->tp_dict = PyDict_New();
2871
+ PyObject *integer_object = NULL;
2872
+ integer_object = PyLong_FromLong(TSK_FS_ENCRYPTION_TYPE_NONE);
2873
+
2874
+ PyDict_SetItemString(type_object->tp_dict, "TSK_FS_ENCRYPTION_TYPE_NONE", integer_object);
2875
+
2876
+ Py_DecRef(integer_object);
2877
+
2878
+ integer_object = PyLong_FromLong(TSK_FS_ENCRYPTION_TYPE_BITLOCKER);
2879
+
2880
+ PyDict_SetItemString(type_object->tp_dict, "TSK_FS_ENCRYPTION_TYPE_BITLOCKER", integer_object);
2881
+
2882
+ Py_DecRef(integer_object);
2883
+
2884
+ return( 1 );
2885
+ }
2886
+
2887
+ /* static PyTypeObject TSK_FS_ENCRYPTION_TYPE_ENUM_Type; */
2888
+ static int pyTSK_FS_ENCRYPTION_TYPE_ENUM_init(pyTSK_FS_ENCRYPTION_TYPE_ENUM *self, PyObject *args, PyObject *kwds)
2889
+ ;
2890
+ static void TSK_FS_ENCRYPTION_TYPE_ENUM_dealloc(pyTSK_FS_ENCRYPTION_TYPE_ENUM *self);
2852
2891
  /******************** TSK_FS_INFO ***********************/
2853
2892
  typedef struct {
2854
2893
  PyObject_HEAD
@@ -2884,6 +2923,8 @@ PyObject *pyTSK_FS_INFO_flags_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2884
2923
  PyObject *pyTSK_FS_INFO_fs_id_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2885
2924
  PyObject *pyTSK_FS_INFO_fs_id_used_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2886
2925
  PyObject *pyTSK_FS_INFO_endian_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2926
+ PyObject *pyTSK_FS_INFO_encryption_type_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2927
+ PyObject *pyTSK_FS_INFO_encryption_data_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2887
2928
  PyObject *pyTSK_FS_INFO_orphan_dir_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2888
2929
  PyObject *pyTSK_FS_INFO_impl_getter(pyTSK_FS_INFO *self, PyObject *arguments);
2889
2930
  /******************** TSK_FS_BLKCALC_FLAG_ENUM ***********************/
@@ -8969,6 +9010,183 @@ static PyTypeObject TSK_FS_ISTAT_FLAG_ENUM_Type = {
8969
9010
  0,
8970
9011
  };
8971
9012
 
9013
+ static PyMethodDef TSK_FS_ENCRYPTION_TYPE_ENUM_methods[] = {
9014
+ {NULL, NULL, 0, NULL} /* Sentinel */
9015
+ };
9016
+
9017
+ static PyGetSetDef TSK_FS_ENCRYPTION_TYPE_ENUM_get_set_definitions[] = {
9018
+ {NULL, NULL, NULL, NULL, NULL} /* Sentinel */
9019
+ };
9020
+
9021
+ static PyObject *TSK_FS_ENCRYPTION_TYPE_ENUM_int(pyTSK_FS_ENCRYPTION_TYPE_ENUM *self) {
9022
+ Py_IncRef(self->value);
9023
+ return self->value;
9024
+ }
9025
+ #if PY_MAJOR_VERSION >= 3
9026
+ static PyNumberMethods TSK_FS_ENCRYPTION_TYPE_ENUM_as_number = {
9027
+ (binaryfunc) 0, /* nb_add */
9028
+ (binaryfunc) 0, /* nb_subtract */
9029
+ (binaryfunc) 0, /* nb_multiply */
9030
+ (binaryfunc) 0, /* nb_remainder */
9031
+ (binaryfunc) 0, /* nb_divmod */
9032
+ (ternaryfunc) 0, /* nb_power */
9033
+ (unaryfunc) 0, /* nb_negative */
9034
+ (unaryfunc) 0, /* nb_positive */
9035
+ (unaryfunc) 0, /* nb_absolute */
9036
+ (inquiry) 0, /* nb_bool */
9037
+ (unaryfunc) 0, /* nb_invert */
9038
+ (binaryfunc) 0, /* nb_lshift */
9039
+ (binaryfunc) 0, /* nb_rshift */
9040
+ (binaryfunc) 0, /* nb_and */
9041
+ (binaryfunc) 0, /* nb_xor */
9042
+ (binaryfunc) 0, /* nb_or */
9043
+ (unaryfunc) TSK_FS_ENCRYPTION_TYPE_ENUM_int, /* nb_int */
9044
+ (void *) NULL, /* nb_reserved */
9045
+ (unaryfunc) 0, /* nb_float */
9046
+
9047
+ (binaryfunc) 0, /* nb_inplace_add */
9048
+ (binaryfunc) 0, /* nb_inplace_subtract */
9049
+ (binaryfunc) 0, /* nb_inplace_multiply */
9050
+ (binaryfunc) 0, /* nb_inplace_remainder */
9051
+ (ternaryfunc) 0, /* nb_inplace_power */
9052
+ (binaryfunc) 0, /* nb_inplace_lshift */
9053
+ (binaryfunc) 0, /* nb_inplace_rshift */
9054
+ (binaryfunc) 0, /* nb_inplace_and */
9055
+ (binaryfunc) 0, /* nb_inplace_xor */
9056
+ (binaryfunc) 0, /* nb_inplace_or */
9057
+
9058
+ (binaryfunc) 0, /* nb_floor_divide */
9059
+ (binaryfunc) 0, /* nb_true_divide */
9060
+ (binaryfunc) 0, /* nb_inplace_floor_divide */
9061
+ (binaryfunc) 0, /* nb_inplace_true_divide */
9062
+
9063
+ (unaryfunc) 0, /* nb_index */
9064
+ };
9065
+ #else
9066
+ static PyNumberMethods TSK_FS_ENCRYPTION_TYPE_ENUM_as_number = {
9067
+ (binaryfunc) 0, /* nb_add */
9068
+ (binaryfunc) 0, /* nb_subtract */
9069
+ (binaryfunc) 0, /* nb_multiply */
9070
+ (binaryfunc) 0, /* nb_divide */
9071
+ (binaryfunc) 0, /* nb_remainder */
9072
+ (binaryfunc) 0, /* nb_divmod */
9073
+ (ternaryfunc) 0, /* nb_power */
9074
+ (unaryfunc) 0, /* nb_negative */
9075
+ (unaryfunc) 0, /* nb_positive */
9076
+ (unaryfunc) 0, /* nb_absolute */
9077
+ (inquiry) 0, /* nb_nonzero */
9078
+ (unaryfunc) 0, /* nb_invert */
9079
+ (binaryfunc) 0, /* nb_lshift */
9080
+ (binaryfunc) 0, /* nb_rshift */
9081
+ (binaryfunc) 0, /* nb_and */
9082
+ (binaryfunc) 0, /* nb_xor */
9083
+ (binaryfunc) 0, /* nb_or */
9084
+ (coercion) 0, /* nb_coerce */
9085
+ (unaryfunc) TSK_FS_ENCRYPTION_TYPE_ENUM_int, /* nb_int */
9086
+ (unaryfunc) 0, /* nb_long */
9087
+ (unaryfunc) 0, /* nb_float */
9088
+ (unaryfunc) 0, /* nb_oct */
9089
+ (unaryfunc) 0, /* nb_hex */
9090
+
9091
+ (binaryfunc) 0, /* nb_inplace_add */
9092
+ (binaryfunc) 0, /* nb_inplace_subtract */
9093
+ (binaryfunc) 0, /* nb_inplace_multiply */
9094
+ (binaryfunc) 0, /* nb_inplace_divide */
9095
+ (binaryfunc) 0, /* nb_inplace_remainder */
9096
+ (ternaryfunc) 0, /* nb_inplace_power */
9097
+ (binaryfunc) 0, /* nb_inplace_lshift */
9098
+ (binaryfunc) 0, /* nb_inplace_rshift */
9099
+ (binaryfunc) 0, /* nb_inplace_and */
9100
+ (binaryfunc) 0, /* nb_inplace_xor */
9101
+ (binaryfunc) 0, /* nb_inplace_or */
9102
+
9103
+ (binaryfunc) 0, /* nb_floor_divide */
9104
+ (binaryfunc) 0, /* nb_true_divide */
9105
+ (binaryfunc) 0, /* nb_inplace_floor_divide */
9106
+ (binaryfunc) 0, /* nb_inplace_true_divide */
9107
+
9108
+ (unaryfunc) 0, /* nb_index */
9109
+ };
9110
+ #endif /* PY_MAJOR_VERSION >= 3 */
9111
+
9112
+ static PyTypeObject TSK_FS_ENCRYPTION_TYPE_ENUM_Type = {
9113
+ PyVarObject_HEAD_INIT(NULL, 0)
9114
+ /* tp_name */
9115
+ "pytsk3.TSK_FS_ENCRYPTION_TYPE_ENUM",
9116
+ /* tp_basicsize */
9117
+ sizeof(pyTSK_FS_ENCRYPTION_TYPE_ENUM),
9118
+ /* tp_itemsize */
9119
+ 0,
9120
+ /* tp_dealloc */
9121
+ (destructor) TSK_FS_ENCRYPTION_TYPE_ENUM_dealloc,
9122
+ /* tp_print */
9123
+ 0,
9124
+ /* tp_getattr */
9125
+ 0,
9126
+ /* tp_setattr */
9127
+ 0,
9128
+ /* tp_compare */
9129
+ 0,
9130
+ /* tp_repr */
9131
+ 0,
9132
+ /* tp_as_number */
9133
+ &TSK_FS_ENCRYPTION_TYPE_ENUM_as_number,
9134
+ /* tp_as_sequence */
9135
+ 0,
9136
+ /* tp_as_mapping */
9137
+ 0,
9138
+ /* tp_hash */
9139
+ 0,
9140
+ /* tp_call */
9141
+ 0,
9142
+ /* tp_str */
9143
+ (reprfunc) 0,
9144
+ /* tp_getattro */
9145
+ (getattrofunc) 0,
9146
+ /* tp_setattro */
9147
+ 0,
9148
+ /* tp_as_buffer */
9149
+ 0,
9150
+ /* tp_flags */
9151
+ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
9152
+ /* tp_doc */
9153
+ "TSK_FS_ENCRYPTION_TYPE_ENUM: ",
9154
+ /* tp_traverse */
9155
+ 0,
9156
+ /* tp_clear */
9157
+ 0,
9158
+ /* tp_richcompare */
9159
+ 0,
9160
+ /* tp_weaklistoffset */
9161
+ 0,
9162
+ /* tp_iter */
9163
+ (getiterfunc) 0,
9164
+ /* tp_iternext */
9165
+ (iternextfunc) 0,
9166
+ /* tp_methods */
9167
+ TSK_FS_ENCRYPTION_TYPE_ENUM_methods,
9168
+ /* tp_members */
9169
+ 0,
9170
+ /* tp_getset */
9171
+ TSK_FS_ENCRYPTION_TYPE_ENUM_get_set_definitions,
9172
+ /* tp_base */
9173
+ 0,
9174
+ /* tp_dict */
9175
+ 0,
9176
+ /* tp_descr_get */
9177
+ 0,
9178
+ /* tp_descr_set */
9179
+ 0,
9180
+ /* tp_dictoffset */
9181
+ 0,
9182
+ /* tp_init */
9183
+ (initproc) pyTSK_FS_ENCRYPTION_TYPE_ENUM_init,
9184
+ /* tp_alloc */
9185
+ 0,
9186
+ /* tp_new */
9187
+ 0,
9188
+ };
9189
+
8972
9190
  static PyMethodDef TSK_FS_INFO_methods[] = {
8973
9191
  {NULL, NULL, 0, NULL} /* Sentinel */
8974
9192
  };
@@ -9088,6 +9306,18 @@ static PyGetSetDef TSK_FS_INFO_get_set_definitions[] = {
9088
9306
  "endian.",
9089
9307
  NULL },
9090
9308
 
9309
+ { "encryption_type",
9310
+ (getter) pyTSK_FS_INFO_encryption_type_getter,
9311
+ (setter) 0,
9312
+ "encryption_type.",
9313
+ NULL },
9314
+
9315
+ { "encryption_data",
9316
+ (getter) pyTSK_FS_INFO_encryption_data_getter,
9317
+ (setter) 0,
9318
+ "encryption_data.",
9319
+ NULL },
9320
+
9091
9321
  { "orphan_dir",
9092
9322
  (getter) pyTSK_FS_INFO_orphan_dir_getter,
9093
9323
  (setter) 0,
@@ -16244,6 +16474,33 @@ on_error:
16244
16474
  return -1;
16245
16475
  }
16246
16476
 
16477
+ static void TSK_FS_ENCRYPTION_TYPE_ENUM_dealloc(pyTSK_FS_ENCRYPTION_TYPE_ENUM *self) {
16478
+ struct _typeobject *ob_type = NULL;
16479
+
16480
+ if(self != NULL) {
16481
+ Py_DecRef(self->value);
16482
+ ob_type = Py_TYPE(self);
16483
+ if(ob_type != NULL && ob_type->tp_free != NULL) {
16484
+ ob_type->tp_free((PyObject*) self);
16485
+ }
16486
+ }
16487
+ }
16488
+ static int pyTSK_FS_ENCRYPTION_TYPE_ENUM_init(pyTSK_FS_ENCRYPTION_TYPE_ENUM *self, PyObject *args, PyObject *kwds)
16489
+ {
16490
+ const char *kwlist[] = {"value", NULL};
16491
+
16492
+ if(!PyArg_ParseTupleAndKeywords(args, kwds, "O", (char **) kwlist, &self->value)) {
16493
+ goto on_error;
16494
+ }
16495
+
16496
+ Py_IncRef(self->value);
16497
+
16498
+ return 0;
16499
+
16500
+ on_error:
16501
+ return -1;
16502
+ }
16503
+
16247
16504
  static void TSK_FS_INFO_dealloc(pyTSK_FS_INFO *self) {
16248
16505
  struct _typeobject *ob_type = NULL;
16249
16506
 
@@ -16464,6 +16721,22 @@ static PyObject *pyTSK_FS_INFO_getattr(pyTSK_FS_INFO *self, PyObject *pyname) {
16464
16721
  PyList_Append(list_object, string_object);
16465
16722
  Py_DecRef(string_object);
16466
16723
 
16724
+ #if PY_MAJOR_VERSION >= 3
16725
+ string_object = PyUnicode_FromString("encryption_type");
16726
+ #else
16727
+ string_object = PyString_FromString("encryption_type");
16728
+ #endif
16729
+ PyList_Append(list_object, string_object);
16730
+ Py_DecRef(string_object);
16731
+
16732
+ #if PY_MAJOR_VERSION >= 3
16733
+ string_object = PyUnicode_FromString("encryption_data");
16734
+ #else
16735
+ string_object = PyString_FromString("encryption_data");
16736
+ #endif
16737
+ PyList_Append(list_object, string_object);
16738
+ Py_DecRef(string_object);
16739
+
16467
16740
  #if PY_MAJOR_VERSION >= 3
16468
16741
  string_object = PyUnicode_FromString("orphan_dir");
16469
16742
  #else
@@ -16916,6 +17189,43 @@ Py_END_ALLOW_THREADS
16916
17189
 
16917
17190
  }
16918
17191
 
17192
+ PyObject *pyTSK_FS_INFO_encryption_type_getter(pyTSK_FS_INFO *self, PyObject *arguments) {
17193
+ PyObject *Py_result = NULL;
17194
+ int UNUSED encryption_type = 0;
17195
+
17196
+
17197
+ Py_BEGIN_ALLOW_THREADS
17198
+ encryption_type = (self->base->encryption_type);
17199
+ Py_END_ALLOW_THREADS
17200
+
17201
+ PyErr_Clear();
17202
+ #if PY_MAJOR_VERSION >= 3
17203
+ Py_result = PyLong_FromLong(encryption_type);
17204
+ #else
17205
+ Py_result = PyInt_FromLong(encryption_type);
17206
+ #endif
17207
+
17208
+
17209
+ return Py_result;
17210
+
17211
+ }
17212
+
17213
+ PyObject *pyTSK_FS_INFO_encryption_data_getter(pyTSK_FS_INFO *self, PyObject *arguments) {
17214
+ PyObject *Py_result = NULL;
17215
+
17216
+
17217
+ Py_BEGIN_ALLOW_THREADS
17218
+ (void) (self->base->encryption_data);
17219
+ Py_END_ALLOW_THREADS
17220
+
17221
+ Py_IncRef(Py_None);
17222
+ Py_result = Py_None;
17223
+
17224
+
17225
+ return Py_result;
17226
+
17227
+ }
17228
+
16919
17229
  PyObject *pyTSK_FS_INFO_orphan_dir_getter(pyTSK_FS_INFO *self, PyObject *arguments) {
16920
17230
  PyObject *Py_result = NULL;
16921
17231
  Gen_wrapper wrapped_orphan_dir = NULL;
@@ -21977,7 +22287,7 @@ on_error:
21977
22287
  */
21978
22288
  PyObject *pytsk3_get_version(PyObject *self, PyObject *arguments) {
21979
22289
  const char *errors = NULL;
21980
- return(PyUnicode_DecodeUTF8("20231007", (Py_ssize_t) 8, errors));
22290
+ return(PyUnicode_DecodeUTF8("20250729", (Py_ssize_t) 8, errors));
21981
22291
  }
21982
22292
 
21983
22293
  static PyMethodDef pytsk3_module_methods[] = {
@@ -22345,6 +22655,17 @@ PyMODINIT_FUNC initpytsk3(void) {
22345
22655
  Py_IncRef((PyObject *)&TSK_FS_ISTAT_FLAG_ENUM_Type);
22346
22656
  PyModule_AddObject(module, "TSK_FS_ISTAT_FLAG_ENUM", (PyObject *)&TSK_FS_ISTAT_FLAG_ENUM_Type);
22347
22657
 
22658
+ /* Initialize: TSK_FS_ENCRYPTION_TYPE_ENUM */
22659
+ TSK_FS_ENCRYPTION_TYPE_ENUM_Type.tp_new = PyType_GenericNew;
22660
+ if (TSK_FS_ENCRYPTION_TYPE_ENUM_init_type(&TSK_FS_ENCRYPTION_TYPE_ENUM_Type) != 1) {
22661
+ goto on_error;
22662
+ }
22663
+ if (PyType_Ready(&TSK_FS_ENCRYPTION_TYPE_ENUM_Type) < 0) {
22664
+ goto on_error;
22665
+ }
22666
+ Py_IncRef((PyObject *)&TSK_FS_ENCRYPTION_TYPE_ENUM_Type);
22667
+ PyModule_AddObject(module, "TSK_FS_ENCRYPTION_TYPE_ENUM", (PyObject *)&TSK_FS_ENCRYPTION_TYPE_ENUM_Type);
22668
+
22348
22669
  /* Initialize: TSK_FS_INFO */
22349
22670
  TSK_FS_INFO_Type.tp_new = PyType_GenericNew;
22350
22671
  if (PyType_Ready(&TSK_FS_INFO_Type) < 0) {
@@ -22606,6 +22927,9 @@ PyMODINIT_FUNC initpytsk3(void) {
22606
22927
  tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_ERR_FS_ATTR_NOTFOUND);
22607
22928
  PyDict_SetItemString(d, "TSK_ERR_FS_ATTR_NOTFOUND", tmp);
22608
22929
  Py_DecRef(tmp);
22930
+ tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_ERR_FS_BITLOCKER_ERROR);
22931
+ PyDict_SetItemString(d, "TSK_ERR_FS_BITLOCKER_ERROR", tmp);
22932
+ Py_DecRef(tmp);
22609
22933
  tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_ERR_FS_BLK_NUM);
22610
22934
  PyDict_SetItemString(d, "TSK_ERR_FS_BLK_NUM", tmp);
22611
22935
  Py_DecRef(tmp);
@@ -23056,6 +23380,12 @@ PyMODINIT_FUNC initpytsk3(void) {
23056
23380
  tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_FS_DIR_WALK_FLAG_UNALLOC);
23057
23381
  PyDict_SetItemString(d, "TSK_FS_DIR_WALK_FLAG_UNALLOC", tmp);
23058
23382
  Py_DecRef(tmp);
23383
+ tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_FS_ENCRYPTION_TYPE_BITLOCKER);
23384
+ PyDict_SetItemString(d, "TSK_FS_ENCRYPTION_TYPE_BITLOCKER", tmp);
23385
+ Py_DecRef(tmp);
23386
+ tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_FS_ENCRYPTION_TYPE_NONE);
23387
+ PyDict_SetItemString(d, "TSK_FS_ENCRYPTION_TYPE_NONE", tmp);
23388
+ Py_DecRef(tmp);
23059
23389
  tmp = PyLong_FromUnsignedLongLong((uint64_t) TSK_FS_FFIND_ALL);
23060
23390
  PyDict_SetItemString(d, "TSK_FS_FFIND_ALL", tmp);
23061
23391
  Py_DecRef(tmp);
@@ -23570,6 +23900,7 @@ TOTAL_CCLASSES++;
23570
23900
 
23571
23901
 
23572
23902
 
23903
+
23573
23904
 
23574
23905
 
23575
23906
  python_wrappers[TOTAL_CCLASSES].class_ref = (Object)&__Img_Info;
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pytsk3
3
- Version: 20231007
3
+ Version: 20250729
4
4
  Summary: Python bindings for the SleuthKit
5
5
  Home-page: https://github.com/py4n6/pytsk
6
6
  Author: Michael Cohen
@@ -10,6 +10,6 @@ Maintainer-email: joachim.metz@gmail.com
10
10
  License: Apache License, Version 2.0
11
11
  Classifier: Development Status :: 3 - Alpha
12
12
  Classifier: Programming Language :: Python
13
- Requires-Python: >=3.7
13
+ Requires-Python: >=3.8
14
14
 
15
15
  Python bindings for the SleuthKit