├── .codecov.yml ├── .github └── workflows │ ├── build.yml │ ├── build_freebsd.yml │ ├── build_macos.yml │ ├── build_ossfuzz.yml │ ├── build_shared.yml │ └── build_wheel.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── appveyor.yml ├── autogen.ps1 ├── autogen.sh ├── common ├── Makefile.am ├── byte_stream.h ├── common.h ├── config_borlandc.h ├── config_msc.h ├── config_winapi.h ├── file_stream.h ├── memory.h ├── narrow_string.h ├── system_string.h ├── types.h.in └── wide_string.h ├── configure.ac ├── documentation └── FileVault Drive Encryption (FVDE).asciidoc ├── dpkg ├── changelog.in ├── compat ├── control ├── copyright ├── libfvde-dev.install ├── libfvde-python3.install ├── libfvde-tools.install ├── libfvde.install ├── rules └── source │ └── format ├── fvdetools ├── Makefile.am ├── byte_size_string.c ├── byte_size_string.h ├── fvdeinfo.c ├── fvdemount.c ├── fvdetools_getopt.c ├── fvdetools_getopt.h ├── fvdetools_i18n.h ├── fvdetools_input.c ├── fvdetools_input.h ├── fvdetools_libbfio.h ├── fvdetools_libcdata.h ├── fvdetools_libcerror.h ├── fvdetools_libclocale.h ├── fvdetools_libcnotify.h ├── fvdetools_libcpath.h ├── fvdetools_libcsplit.h ├── fvdetools_libfguid.h ├── fvdetools_libfvde.h ├── fvdetools_libuna.h ├── fvdetools_output.c ├── fvdetools_output.h ├── fvdetools_signal.c ├── fvdetools_signal.h ├── fvdetools_unused.h ├── fvdewipekey.c ├── info_handle.c ├── info_handle.h ├── mount_dokan.c ├── mount_dokan.h ├── mount_file_entry.c ├── mount_file_entry.h ├── mount_file_system.c ├── mount_file_system.h ├── mount_fuse.c ├── mount_fuse.h ├── mount_handle.c ├── mount_handle.h ├── wipekey_handle.c └── wipekey_handle.h ├── include ├── Makefile.am ├── libfvde.h.in └── libfvde │ ├── codepage.h │ ├── definitions.h.in │ ├── error.h │ ├── extern.h │ ├── features.h.in │ └── types.h.in ├── libfvde.ini ├── libfvde.pc.in ├── libfvde.spec.in ├── libfvde ├── Makefile.am ├── fvde_metadata.h ├── fvde_volume.h ├── libfvde.c ├── libfvde.rc.in ├── libfvde_bit_stream.c ├── libfvde_bit_stream.h ├── libfvde_checksum.c ├── libfvde_checksum.h ├── libfvde_codepage.h ├── libfvde_compression.c ├── libfvde_compression.h ├── libfvde_debug.c ├── libfvde_debug.h ├── libfvde_definitions.h.in ├── libfvde_deflate.c ├── libfvde_deflate.h ├── libfvde_encrypted_metadata.c ├── libfvde_encrypted_metadata.h ├── libfvde_encryption_context.c ├── libfvde_encryption_context.h ├── libfvde_encryption_context_plist.c ├── libfvde_encryption_context_plist.h ├── libfvde_error.c ├── libfvde_error.h ├── libfvde_extern.h ├── libfvde_huffman_tree.c ├── libfvde_huffman_tree.h ├── libfvde_io_handle.c ├── libfvde_io_handle.h ├── libfvde_keyring.c ├── libfvde_keyring.h ├── libfvde_libbfio.h ├── libfvde_libcaes.h ├── libfvde_libcdata.h ├── libfvde_libcerror.h ├── libfvde_libclocale.h ├── libfvde_libcnotify.h ├── libfvde_libcthreads.h ├── libfvde_libfcache.h ├── libfvde_libfdata.h ├── libfvde_libfguid.h ├── libfvde_libfplist.h ├── libfvde_libfvalue.h ├── libfvde_libhmac.h ├── libfvde_libuna.h ├── libfvde_logical_volume.c ├── libfvde_logical_volume.h ├── libfvde_logical_volume_descriptor.c ├── libfvde_logical_volume_descriptor.h ├── libfvde_metadata.c ├── libfvde_metadata.h ├── libfvde_metadata_block.c ├── libfvde_metadata_block.h ├── libfvde_notify.c ├── libfvde_notify.h ├── libfvde_password.c ├── libfvde_password.h ├── libfvde_physical_volume.c ├── libfvde_physical_volume.h ├── libfvde_physical_volume_descriptor.c ├── libfvde_physical_volume_descriptor.h ├── libfvde_sector_data.c ├── libfvde_sector_data.h ├── libfvde_segment_descriptor.c ├── libfvde_segment_descriptor.h ├── libfvde_support.c ├── libfvde_support.h ├── libfvde_types.h ├── libfvde_unused.h ├── libfvde_volume.c ├── libfvde_volume.h ├── libfvde_volume_data_handle.c ├── libfvde_volume_data_handle.h ├── libfvde_volume_group.c ├── libfvde_volume_group.h ├── libfvde_volume_header.c └── libfvde_volume_header.h ├── m4 ├── common.m4 ├── libbfio.m4 ├── libcaes.m4 ├── libcdata.m4 ├── libcerror.m4 ├── libcfile.m4 ├── libclocale.m4 ├── libcnotify.m4 ├── libcpath.m4 ├── libcrypto.m4 ├── libcsplit.m4 ├── libcthreads.m4 ├── libfcache.m4 ├── libfdata.m4 ├── libfguid.m4 ├── libfplist.m4 ├── libfuse.m4 ├── libfvalue.m4 ├── libhmac.m4 ├── libuna.m4 ├── pthread.m4 ├── python.m4 ├── tests.m4 ├── types.m4 └── zlib.m4 ├── manuals ├── Makefile.am ├── fvdeinfo.1 ├── fvdemount.1 └── libfvde.3 ├── msvscpp ├── Makefile.am ├── fvde_test_bit_stream │ └── fvde_test_bit_stream.vcproj ├── fvde_test_checksum │ └── fvde_test_checksum.vcproj ├── fvde_test_compression │ └── fvde_test_compression.vcproj ├── fvde_test_deflate │ └── fvde_test_deflate.vcproj ├── fvde_test_encrypted_metadata │ └── fvde_test_encrypted_metadata.vcproj ├── fvde_test_encryption_context │ └── fvde_test_encryption_context.vcproj ├── fvde_test_encryption_context_plist │ └── fvde_test_encryption_context_plist.vcproj ├── fvde_test_error │ └── fvde_test_error.vcproj ├── fvde_test_huffman_tree │ └── fvde_test_huffman_tree.vcproj ├── fvde_test_io_handle │ └── fvde_test_io_handle.vcproj ├── fvde_test_keyring │ └── fvde_test_keyring.vcproj ├── fvde_test_logical_volume │ └── fvde_test_logical_volume.vcproj ├── fvde_test_logical_volume_descriptor │ └── fvde_test_logical_volume_descriptor.vcproj ├── fvde_test_metadata │ └── fvde_test_metadata.vcproj ├── fvde_test_metadata_block │ └── fvde_test_metadata_block.vcproj ├── fvde_test_notify │ └── fvde_test_notify.vcproj ├── fvde_test_physical_volume │ └── fvde_test_physical_volume.vcproj ├── fvde_test_physical_volume_descriptor │ └── fvde_test_physical_volume_descriptor.vcproj ├── fvde_test_sector_data │ └── fvde_test_sector_data.vcproj ├── fvde_test_segment_descriptor │ └── fvde_test_segment_descriptor.vcproj ├── fvde_test_support │ └── fvde_test_support.vcproj ├── fvde_test_tools_output │ └── fvde_test_tools_output.vcproj ├── fvde_test_tools_signal │ └── fvde_test_tools_signal.vcproj ├── fvde_test_volume │ └── fvde_test_volume.vcproj ├── fvde_test_volume_data_handle │ └── fvde_test_volume_data_handle.vcproj ├── fvde_test_volume_group │ └── fvde_test_volume_group.vcproj ├── fvde_test_volume_header │ └── fvde_test_volume_header.vcproj ├── fvdeinfo │ └── fvdeinfo.vcproj ├── fvdemount │ └── fvdemount.vcproj ├── fvdewipekey │ └── fvdewipekey.vcproj ├── libbfio │ └── libbfio.vcproj ├── libcaes │ └── libcaes.vcproj ├── libcdata │ └── libcdata.vcproj ├── libcerror │ └── libcerror.vcproj ├── libcfile │ └── libcfile.vcproj ├── libclocale │ └── libclocale.vcproj ├── libcnotify │ └── libcnotify.vcproj ├── libcpath │ └── libcpath.vcproj ├── libcsplit │ └── libcsplit.vcproj ├── libcthreads │ └── libcthreads.vcproj ├── libfcache │ └── libfcache.vcproj ├── libfdata │ └── libfdata.vcproj ├── libfguid │ └── libfguid.vcproj ├── libfplist │ └── libfplist.vcproj ├── libfvalue │ └── libfvalue.vcproj ├── libfvde.sln ├── libfvde │ └── libfvde.vcproj ├── libhmac │ └── libhmac.vcproj ├── libuna │ └── libuna.vcproj ├── pyfvde │ └── pyfvde.vcproj └── zlib │ └── zlib.vcproj ├── ossfuzz ├── Makefile.am ├── ossfuzz_libbfio.h ├── ossfuzz_libfvde.h └── volume_fuzzer.cc ├── po ├── ChangeLog ├── Makevars.in └── POTFILES.in ├── pyfvde ├── Makefile.am ├── pyfvde.c ├── pyfvde.h ├── pyfvde_datetime.c ├── pyfvde_datetime.h ├── pyfvde_error.c ├── pyfvde_error.h ├── pyfvde_file_object_io_handle.c ├── pyfvde_file_object_io_handle.h ├── pyfvde_file_objects_io_pool.c ├── pyfvde_file_objects_io_pool.h ├── pyfvde_guid.c ├── pyfvde_guid.h ├── pyfvde_integer.c ├── pyfvde_integer.h ├── pyfvde_libbfio.h ├── pyfvde_libcerror.h ├── pyfvde_libclocale.h ├── pyfvde_libfguid.h ├── pyfvde_libfvde.h ├── pyfvde_logical_volume.c ├── pyfvde_logical_volume.h ├── pyfvde_logical_volumes.c ├── pyfvde_logical_volumes.h ├── pyfvde_physical_volume.c ├── pyfvde_physical_volume.h ├── pyfvde_physical_volumes.c ├── pyfvde_physical_volumes.h ├── pyfvde_python.h ├── pyfvde_unused.h ├── pyfvde_volume.c ├── pyfvde_volume.h ├── pyfvde_volume_group.c └── pyfvde_volume_group.h ├── pyproject.toml ├── runtests.ps1 ├── runtests.sh ├── setup.cfg.in ├── setup.py ├── syncdokan.ps1 ├── synclibs.ps1 ├── synclibs.sh ├── synctestdata.ps1 ├── synctestdata.sh ├── syncwinflexbison.ps1 ├── synczlib.ps1 ├── tests ├── Makefile.am ├── build.sh ├── data │ ├── encrypted_metadata_block_data_0x0010.1 │ ├── encrypted_metadata_block_data_0x0011.1 │ ├── encrypted_metadata_block_data_0x0012.1 │ ├── encrypted_metadata_block_data_0x0013.1 │ ├── encrypted_metadata_block_data_0x0014.1 │ ├── encrypted_metadata_block_data_0x0016.1 │ ├── encrypted_metadata_block_data_0x0017.1 │ ├── encrypted_metadata_block_data_0x0018.1 │ ├── encrypted_metadata_block_data_0x0019.1 │ ├── encrypted_metadata_block_data_0x001a.1 │ ├── encrypted_metadata_block_data_0x001c.1 │ ├── encrypted_metadata_block_data_0x001d.1 │ ├── encrypted_metadata_block_data_0x0021.1 │ ├── encrypted_metadata_block_data_0x0022.1 │ ├── encrypted_metadata_block_data_0x0025.1 │ ├── encrypted_metadata_block_data_0x0105.1 │ ├── encrypted_metadata_block_data_0x0205.1 │ ├── encrypted_metadata_block_data_0x0305.1 │ ├── encrypted_metadata_block_data_0x0405.1 │ ├── encrypted_metadata_block_data_0x0505.1 │ ├── encryption_context_plist.1 │ ├── encryption_context_plist.2 │ ├── encryption_context_plist.3 │ ├── encryption_context_plist.4 │ ├── volume_group_plist.1 │ └── volume_header.1 ├── fvde_test_bit_stream.c ├── fvde_test_checksum.c ├── fvde_test_compression.c ├── fvde_test_deflate.c ├── fvde_test_encrypted_metadata.c ├── fvde_test_encryption_context.c ├── fvde_test_encryption_context_plist.c ├── fvde_test_error.c ├── fvde_test_functions.c ├── fvde_test_functions.h ├── fvde_test_getopt.c ├── fvde_test_getopt.h ├── fvde_test_huffman_tree.c ├── fvde_test_io_handle.c ├── fvde_test_keyring.c ├── fvde_test_libbfio.h ├── fvde_test_libcdata.h ├── fvde_test_libcerror.h ├── fvde_test_libclocale.h ├── fvde_test_libcnotify.h ├── fvde_test_libfplist.h ├── fvde_test_libfvde.h ├── fvde_test_libuna.h ├── fvde_test_logical_volume.c ├── fvde_test_logical_volume_descriptor.c ├── fvde_test_macros.h ├── fvde_test_memory.c ├── fvde_test_memory.h ├── fvde_test_metadata.c ├── fvde_test_metadata_block.c ├── fvde_test_notify.c ├── fvde_test_physical_volume.c ├── fvde_test_physical_volume_descriptor.c ├── fvde_test_sector_data.c ├── fvde_test_segment_descriptor.c ├── fvde_test_support.c ├── fvde_test_tools_output.c ├── fvde_test_tools_signal.c ├── fvde_test_unused.h ├── fvde_test_volume.c ├── fvde_test_volume_data_handle.c ├── fvde_test_volume_group.c ├── fvde_test_volume_header.c ├── lsan.suppressions ├── pkgbuild.sh ├── pyfvde_test_logical_volume.py ├── pyfvde_test_physical_volume.py ├── pyfvde_test_support.py ├── pyfvde_test_volume.py ├── pyfvde_test_volume_group.py ├── runtests.py ├── runtests.sh ├── syncsharedlibs.sh ├── test_fvdeinfo.ps1 ├── test_fvdeinfo.sh ├── test_library.ps1 ├── test_library.sh ├── test_manpage.sh ├── test_python_module.sh ├── test_runner.sh ├── test_tools.ps1 └── test_tools.sh └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build_freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_ossfuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build_ossfuzz.yml -------------------------------------------------------------------------------- /.github/workflows/build_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build_shared.yml -------------------------------------------------------------------------------- /.github/workflows/build_wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.github/workflows/build_wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/autogen.ps1 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/byte_stream.h -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/common.h -------------------------------------------------------------------------------- /common/config_borlandc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/config_borlandc.h -------------------------------------------------------------------------------- /common/config_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/config_msc.h -------------------------------------------------------------------------------- /common/config_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/config_winapi.h -------------------------------------------------------------------------------- /common/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/file_stream.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/narrow_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/narrow_string.h -------------------------------------------------------------------------------- /common/system_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/system_string.h -------------------------------------------------------------------------------- /common/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/types.h.in -------------------------------------------------------------------------------- /common/wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/common/wide_string.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/FileVault Drive Encryption (FVDE).asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/documentation/FileVault Drive Encryption (FVDE).asciidoc -------------------------------------------------------------------------------- /dpkg/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/changelog.in -------------------------------------------------------------------------------- /dpkg/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/control -------------------------------------------------------------------------------- /dpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/copyright -------------------------------------------------------------------------------- /dpkg/libfvde-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/libfvde-dev.install -------------------------------------------------------------------------------- /dpkg/libfvde-python3.install: -------------------------------------------------------------------------------- 1 | /usr/lib/python3* 2 | -------------------------------------------------------------------------------- /dpkg/libfvde-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/libfvde-tools.install -------------------------------------------------------------------------------- /dpkg/libfvde.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/libfvde.install -------------------------------------------------------------------------------- /dpkg/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/dpkg/rules -------------------------------------------------------------------------------- /dpkg/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /fvdetools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/Makefile.am -------------------------------------------------------------------------------- /fvdetools/byte_size_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/byte_size_string.c -------------------------------------------------------------------------------- /fvdetools/byte_size_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/byte_size_string.h -------------------------------------------------------------------------------- /fvdetools/fvdeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdeinfo.c -------------------------------------------------------------------------------- /fvdetools/fvdemount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdemount.c -------------------------------------------------------------------------------- /fvdetools/fvdetools_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_getopt.c -------------------------------------------------------------------------------- /fvdetools/fvdetools_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_getopt.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_i18n.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_input.c -------------------------------------------------------------------------------- /fvdetools/fvdetools_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_input.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libbfio.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libcdata.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libcerror.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libclocale.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libcnotify.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libcpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libcpath.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libcsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libcsplit.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libfguid.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libfvde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libfvde.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_libuna.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_output.c -------------------------------------------------------------------------------- /fvdetools/fvdetools_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_output.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_signal.c -------------------------------------------------------------------------------- /fvdetools/fvdetools_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_signal.h -------------------------------------------------------------------------------- /fvdetools/fvdetools_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdetools_unused.h -------------------------------------------------------------------------------- /fvdetools/fvdewipekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/fvdewipekey.c -------------------------------------------------------------------------------- /fvdetools/info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/info_handle.c -------------------------------------------------------------------------------- /fvdetools/info_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/info_handle.h -------------------------------------------------------------------------------- /fvdetools/mount_dokan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_dokan.c -------------------------------------------------------------------------------- /fvdetools/mount_dokan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_dokan.h -------------------------------------------------------------------------------- /fvdetools/mount_file_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_file_entry.c -------------------------------------------------------------------------------- /fvdetools/mount_file_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_file_entry.h -------------------------------------------------------------------------------- /fvdetools/mount_file_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_file_system.c -------------------------------------------------------------------------------- /fvdetools/mount_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_file_system.h -------------------------------------------------------------------------------- /fvdetools/mount_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_fuse.c -------------------------------------------------------------------------------- /fvdetools/mount_fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_fuse.h -------------------------------------------------------------------------------- /fvdetools/mount_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_handle.c -------------------------------------------------------------------------------- /fvdetools/mount_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/mount_handle.h -------------------------------------------------------------------------------- /fvdetools/wipekey_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/wipekey_handle.c -------------------------------------------------------------------------------- /fvdetools/wipekey_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/fvdetools/wipekey_handle.h -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/libfvde.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde.h.in -------------------------------------------------------------------------------- /include/libfvde/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/codepage.h -------------------------------------------------------------------------------- /include/libfvde/definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/definitions.h.in -------------------------------------------------------------------------------- /include/libfvde/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/error.h -------------------------------------------------------------------------------- /include/libfvde/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/extern.h -------------------------------------------------------------------------------- /include/libfvde/features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/features.h.in -------------------------------------------------------------------------------- /include/libfvde/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/include/libfvde/types.h.in -------------------------------------------------------------------------------- /libfvde.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde.ini -------------------------------------------------------------------------------- /libfvde.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde.pc.in -------------------------------------------------------------------------------- /libfvde.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde.spec.in -------------------------------------------------------------------------------- /libfvde/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/Makefile.am -------------------------------------------------------------------------------- /libfvde/fvde_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/fvde_metadata.h -------------------------------------------------------------------------------- /libfvde/fvde_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/fvde_volume.h -------------------------------------------------------------------------------- /libfvde/libfvde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde.c -------------------------------------------------------------------------------- /libfvde/libfvde.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde.rc.in -------------------------------------------------------------------------------- /libfvde/libfvde_bit_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_bit_stream.c -------------------------------------------------------------------------------- /libfvde/libfvde_bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_bit_stream.h -------------------------------------------------------------------------------- /libfvde/libfvde_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_checksum.c -------------------------------------------------------------------------------- /libfvde/libfvde_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_checksum.h -------------------------------------------------------------------------------- /libfvde/libfvde_codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_codepage.h -------------------------------------------------------------------------------- /libfvde/libfvde_compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_compression.c -------------------------------------------------------------------------------- /libfvde/libfvde_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_compression.h -------------------------------------------------------------------------------- /libfvde/libfvde_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_debug.c -------------------------------------------------------------------------------- /libfvde/libfvde_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_debug.h -------------------------------------------------------------------------------- /libfvde/libfvde_definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_definitions.h.in -------------------------------------------------------------------------------- /libfvde/libfvde_deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_deflate.c -------------------------------------------------------------------------------- /libfvde/libfvde_deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_deflate.h -------------------------------------------------------------------------------- /libfvde/libfvde_encrypted_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encrypted_metadata.c -------------------------------------------------------------------------------- /libfvde/libfvde_encrypted_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encrypted_metadata.h -------------------------------------------------------------------------------- /libfvde/libfvde_encryption_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encryption_context.c -------------------------------------------------------------------------------- /libfvde/libfvde_encryption_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encryption_context.h -------------------------------------------------------------------------------- /libfvde/libfvde_encryption_context_plist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encryption_context_plist.c -------------------------------------------------------------------------------- /libfvde/libfvde_encryption_context_plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_encryption_context_plist.h -------------------------------------------------------------------------------- /libfvde/libfvde_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_error.c -------------------------------------------------------------------------------- /libfvde/libfvde_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_error.h -------------------------------------------------------------------------------- /libfvde/libfvde_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_extern.h -------------------------------------------------------------------------------- /libfvde/libfvde_huffman_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_huffman_tree.c -------------------------------------------------------------------------------- /libfvde/libfvde_huffman_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_huffman_tree.h -------------------------------------------------------------------------------- /libfvde/libfvde_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_io_handle.c -------------------------------------------------------------------------------- /libfvde/libfvde_io_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_io_handle.h -------------------------------------------------------------------------------- /libfvde/libfvde_keyring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_keyring.c -------------------------------------------------------------------------------- /libfvde/libfvde_keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_keyring.h -------------------------------------------------------------------------------- /libfvde/libfvde_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libbfio.h -------------------------------------------------------------------------------- /libfvde/libfvde_libcaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libcaes.h -------------------------------------------------------------------------------- /libfvde/libfvde_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libcdata.h -------------------------------------------------------------------------------- /libfvde/libfvde_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libcerror.h -------------------------------------------------------------------------------- /libfvde/libfvde_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libclocale.h -------------------------------------------------------------------------------- /libfvde/libfvde_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libcnotify.h -------------------------------------------------------------------------------- /libfvde/libfvde_libcthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libcthreads.h -------------------------------------------------------------------------------- /libfvde/libfvde_libfcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libfcache.h -------------------------------------------------------------------------------- /libfvde/libfvde_libfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libfdata.h -------------------------------------------------------------------------------- /libfvde/libfvde_libfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libfguid.h -------------------------------------------------------------------------------- /libfvde/libfvde_libfplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libfplist.h -------------------------------------------------------------------------------- /libfvde/libfvde_libfvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libfvalue.h -------------------------------------------------------------------------------- /libfvde/libfvde_libhmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libhmac.h -------------------------------------------------------------------------------- /libfvde/libfvde_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_libuna.h -------------------------------------------------------------------------------- /libfvde/libfvde_logical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_logical_volume.c -------------------------------------------------------------------------------- /libfvde/libfvde_logical_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_logical_volume.h -------------------------------------------------------------------------------- /libfvde/libfvde_logical_volume_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_logical_volume_descriptor.c -------------------------------------------------------------------------------- /libfvde/libfvde_logical_volume_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_logical_volume_descriptor.h -------------------------------------------------------------------------------- /libfvde/libfvde_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_metadata.c -------------------------------------------------------------------------------- /libfvde/libfvde_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_metadata.h -------------------------------------------------------------------------------- /libfvde/libfvde_metadata_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_metadata_block.c -------------------------------------------------------------------------------- /libfvde/libfvde_metadata_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_metadata_block.h -------------------------------------------------------------------------------- /libfvde/libfvde_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_notify.c -------------------------------------------------------------------------------- /libfvde/libfvde_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_notify.h -------------------------------------------------------------------------------- /libfvde/libfvde_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_password.c -------------------------------------------------------------------------------- /libfvde/libfvde_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_password.h -------------------------------------------------------------------------------- /libfvde/libfvde_physical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_physical_volume.c -------------------------------------------------------------------------------- /libfvde/libfvde_physical_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_physical_volume.h -------------------------------------------------------------------------------- /libfvde/libfvde_physical_volume_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_physical_volume_descriptor.c -------------------------------------------------------------------------------- /libfvde/libfvde_physical_volume_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_physical_volume_descriptor.h -------------------------------------------------------------------------------- /libfvde/libfvde_sector_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_sector_data.c -------------------------------------------------------------------------------- /libfvde/libfvde_sector_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_sector_data.h -------------------------------------------------------------------------------- /libfvde/libfvde_segment_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_segment_descriptor.c -------------------------------------------------------------------------------- /libfvde/libfvde_segment_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_segment_descriptor.h -------------------------------------------------------------------------------- /libfvde/libfvde_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_support.c -------------------------------------------------------------------------------- /libfvde/libfvde_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_support.h -------------------------------------------------------------------------------- /libfvde/libfvde_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_types.h -------------------------------------------------------------------------------- /libfvde/libfvde_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_unused.h -------------------------------------------------------------------------------- /libfvde/libfvde_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume.c -------------------------------------------------------------------------------- /libfvde/libfvde_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume.h -------------------------------------------------------------------------------- /libfvde/libfvde_volume_data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_data_handle.c -------------------------------------------------------------------------------- /libfvde/libfvde_volume_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_data_handle.h -------------------------------------------------------------------------------- /libfvde/libfvde_volume_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_group.c -------------------------------------------------------------------------------- /libfvde/libfvde_volume_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_group.h -------------------------------------------------------------------------------- /libfvde/libfvde_volume_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_header.c -------------------------------------------------------------------------------- /libfvde/libfvde_volume_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/libfvde/libfvde_volume_header.h -------------------------------------------------------------------------------- /m4/common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/common.m4 -------------------------------------------------------------------------------- /m4/libbfio.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libbfio.m4 -------------------------------------------------------------------------------- /m4/libcaes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcaes.m4 -------------------------------------------------------------------------------- /m4/libcdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcdata.m4 -------------------------------------------------------------------------------- /m4/libcerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcerror.m4 -------------------------------------------------------------------------------- /m4/libcfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcfile.m4 -------------------------------------------------------------------------------- /m4/libclocale.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libclocale.m4 -------------------------------------------------------------------------------- /m4/libcnotify.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcnotify.m4 -------------------------------------------------------------------------------- /m4/libcpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcpath.m4 -------------------------------------------------------------------------------- /m4/libcrypto.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcrypto.m4 -------------------------------------------------------------------------------- /m4/libcsplit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcsplit.m4 -------------------------------------------------------------------------------- /m4/libcthreads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libcthreads.m4 -------------------------------------------------------------------------------- /m4/libfcache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfcache.m4 -------------------------------------------------------------------------------- /m4/libfdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfdata.m4 -------------------------------------------------------------------------------- /m4/libfguid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfguid.m4 -------------------------------------------------------------------------------- /m4/libfplist.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfplist.m4 -------------------------------------------------------------------------------- /m4/libfuse.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfuse.m4 -------------------------------------------------------------------------------- /m4/libfvalue.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libfvalue.m4 -------------------------------------------------------------------------------- /m4/libhmac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libhmac.m4 -------------------------------------------------------------------------------- /m4/libuna.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/libuna.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/python.m4 -------------------------------------------------------------------------------- /m4/tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/tests.m4 -------------------------------------------------------------------------------- /m4/types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/types.m4 -------------------------------------------------------------------------------- /m4/zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/m4/zlib.m4 -------------------------------------------------------------------------------- /manuals/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/manuals/Makefile.am -------------------------------------------------------------------------------- /manuals/fvdeinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/manuals/fvdeinfo.1 -------------------------------------------------------------------------------- /manuals/fvdemount.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/manuals/fvdemount.1 -------------------------------------------------------------------------------- /manuals/libfvde.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/manuals/libfvde.3 -------------------------------------------------------------------------------- /msvscpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/Makefile.am -------------------------------------------------------------------------------- /msvscpp/fvde_test_bit_stream/fvde_test_bit_stream.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_bit_stream/fvde_test_bit_stream.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_checksum/fvde_test_checksum.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_checksum/fvde_test_checksum.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_compression/fvde_test_compression.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_compression/fvde_test_compression.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_deflate/fvde_test_deflate.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_deflate/fvde_test_deflate.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_encrypted_metadata/fvde_test_encrypted_metadata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_encrypted_metadata/fvde_test_encrypted_metadata.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_encryption_context/fvde_test_encryption_context.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_encryption_context/fvde_test_encryption_context.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_encryption_context_plist/fvde_test_encryption_context_plist.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_encryption_context_plist/fvde_test_encryption_context_plist.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_error/fvde_test_error.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_error/fvde_test_error.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_huffman_tree/fvde_test_huffman_tree.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_huffman_tree/fvde_test_huffman_tree.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_io_handle/fvde_test_io_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_io_handle/fvde_test_io_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_keyring/fvde_test_keyring.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_keyring/fvde_test_keyring.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_logical_volume/fvde_test_logical_volume.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_logical_volume/fvde_test_logical_volume.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_logical_volume_descriptor/fvde_test_logical_volume_descriptor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_logical_volume_descriptor/fvde_test_logical_volume_descriptor.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_metadata/fvde_test_metadata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_metadata/fvde_test_metadata.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_metadata_block/fvde_test_metadata_block.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_metadata_block/fvde_test_metadata_block.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_notify/fvde_test_notify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_notify/fvde_test_notify.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_physical_volume/fvde_test_physical_volume.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_physical_volume/fvde_test_physical_volume.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_physical_volume_descriptor/fvde_test_physical_volume_descriptor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_physical_volume_descriptor/fvde_test_physical_volume_descriptor.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_sector_data/fvde_test_sector_data.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_sector_data/fvde_test_sector_data.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_segment_descriptor/fvde_test_segment_descriptor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_segment_descriptor/fvde_test_segment_descriptor.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_support/fvde_test_support.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_support/fvde_test_support.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_tools_output/fvde_test_tools_output.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_tools_output/fvde_test_tools_output.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_tools_signal/fvde_test_tools_signal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_tools_signal/fvde_test_tools_signal.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_volume/fvde_test_volume.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_volume/fvde_test_volume.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_volume_data_handle/fvde_test_volume_data_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_volume_data_handle/fvde_test_volume_data_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_volume_group/fvde_test_volume_group.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_volume_group/fvde_test_volume_group.vcproj -------------------------------------------------------------------------------- /msvscpp/fvde_test_volume_header/fvde_test_volume_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvde_test_volume_header/fvde_test_volume_header.vcproj -------------------------------------------------------------------------------- /msvscpp/fvdeinfo/fvdeinfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvdeinfo/fvdeinfo.vcproj -------------------------------------------------------------------------------- /msvscpp/fvdemount/fvdemount.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvdemount/fvdemount.vcproj -------------------------------------------------------------------------------- /msvscpp/fvdewipekey/fvdewipekey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/fvdewipekey/fvdewipekey.vcproj -------------------------------------------------------------------------------- /msvscpp/libbfio/libbfio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libbfio/libbfio.vcproj -------------------------------------------------------------------------------- /msvscpp/libcaes/libcaes.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcaes/libcaes.vcproj -------------------------------------------------------------------------------- /msvscpp/libcdata/libcdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcdata/libcdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libcerror/libcerror.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcerror/libcerror.vcproj -------------------------------------------------------------------------------- /msvscpp/libcfile/libcfile.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcfile/libcfile.vcproj -------------------------------------------------------------------------------- /msvscpp/libclocale/libclocale.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libclocale/libclocale.vcproj -------------------------------------------------------------------------------- /msvscpp/libcnotify/libcnotify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcnotify/libcnotify.vcproj -------------------------------------------------------------------------------- /msvscpp/libcpath/libcpath.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcpath/libcpath.vcproj -------------------------------------------------------------------------------- /msvscpp/libcsplit/libcsplit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcsplit/libcsplit.vcproj -------------------------------------------------------------------------------- /msvscpp/libcthreads/libcthreads.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libcthreads/libcthreads.vcproj -------------------------------------------------------------------------------- /msvscpp/libfcache/libfcache.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfcache/libfcache.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdata/libfdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfdata/libfdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libfguid/libfguid.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfguid/libfguid.vcproj -------------------------------------------------------------------------------- /msvscpp/libfplist/libfplist.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfplist/libfplist.vcproj -------------------------------------------------------------------------------- /msvscpp/libfvalue/libfvalue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfvalue/libfvalue.vcproj -------------------------------------------------------------------------------- /msvscpp/libfvde.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfvde.sln -------------------------------------------------------------------------------- /msvscpp/libfvde/libfvde.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libfvde/libfvde.vcproj -------------------------------------------------------------------------------- /msvscpp/libhmac/libhmac.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libhmac/libhmac.vcproj -------------------------------------------------------------------------------- /msvscpp/libuna/libuna.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/libuna/libuna.vcproj -------------------------------------------------------------------------------- /msvscpp/pyfvde/pyfvde.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/pyfvde/pyfvde.vcproj -------------------------------------------------------------------------------- /msvscpp/zlib/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/msvscpp/zlib/zlib.vcproj -------------------------------------------------------------------------------- /ossfuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/ossfuzz/Makefile.am -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/ossfuzz/ossfuzz_libbfio.h -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libfvde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/ossfuzz/ossfuzz_libfvde.h -------------------------------------------------------------------------------- /ossfuzz/volume_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/ossfuzz/volume_fuzzer.cc -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/po/Makevars.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | -------------------------------------------------------------------------------- /pyfvde/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/Makefile.am -------------------------------------------------------------------------------- /pyfvde/pyfvde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde.c -------------------------------------------------------------------------------- /pyfvde/pyfvde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_datetime.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_datetime.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_error.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_error.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_file_object_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_file_object_io_handle.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_file_object_io_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_file_object_io_handle.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_file_objects_io_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_file_objects_io_pool.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_file_objects_io_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_file_objects_io_pool.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_guid.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_guid.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_integer.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_integer.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_libbfio.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_libcerror.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_libclocale.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_libfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_libfguid.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_libfvde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_libfvde.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_logical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_logical_volume.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_logical_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_logical_volume.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_logical_volumes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_logical_volumes.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_logical_volumes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_logical_volumes.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_physical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_physical_volume.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_physical_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_physical_volume.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_physical_volumes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_physical_volumes.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_physical_volumes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_physical_volumes.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_python.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_unused.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_volume.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_volume.h -------------------------------------------------------------------------------- /pyfvde/pyfvde_volume_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_volume_group.c -------------------------------------------------------------------------------- /pyfvde/pyfvde_volume_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyfvde/pyfvde_volume_group.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/runtests.ps1 -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/setup.cfg.in -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/setup.py -------------------------------------------------------------------------------- /syncdokan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/syncdokan.ps1 -------------------------------------------------------------------------------- /synclibs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/synclibs.ps1 -------------------------------------------------------------------------------- /synclibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/synclibs.sh -------------------------------------------------------------------------------- /synctestdata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/synctestdata.ps1 -------------------------------------------------------------------------------- /synctestdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/synctestdata.sh -------------------------------------------------------------------------------- /syncwinflexbison.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/syncwinflexbison.ps1 -------------------------------------------------------------------------------- /synczlib.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/synczlib.ps1 -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0010.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0010.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0011.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0011.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0012.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0012.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0013.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0013.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0014.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0014.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0016.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0016.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0017.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0017.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0018.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0018.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0019.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0019.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x001a.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x001a.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x001c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x001c.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x001d.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x001d.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0021.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0021.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0022.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0022.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0025.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0025.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0105.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0105.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0205.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0205.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0305.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0305.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0405.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0405.1 -------------------------------------------------------------------------------- /tests/data/encrypted_metadata_block_data_0x0505.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encrypted_metadata_block_data_0x0505.1 -------------------------------------------------------------------------------- /tests/data/encryption_context_plist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encryption_context_plist.1 -------------------------------------------------------------------------------- /tests/data/encryption_context_plist.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encryption_context_plist.2 -------------------------------------------------------------------------------- /tests/data/encryption_context_plist.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encryption_context_plist.3 -------------------------------------------------------------------------------- /tests/data/encryption_context_plist.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/encryption_context_plist.4 -------------------------------------------------------------------------------- /tests/data/volume_group_plist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/volume_group_plist.1 -------------------------------------------------------------------------------- /tests/data/volume_header.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/data/volume_header.1 -------------------------------------------------------------------------------- /tests/fvde_test_bit_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_bit_stream.c -------------------------------------------------------------------------------- /tests/fvde_test_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_checksum.c -------------------------------------------------------------------------------- /tests/fvde_test_compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_compression.c -------------------------------------------------------------------------------- /tests/fvde_test_deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_deflate.c -------------------------------------------------------------------------------- /tests/fvde_test_encrypted_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_encrypted_metadata.c -------------------------------------------------------------------------------- /tests/fvde_test_encryption_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_encryption_context.c -------------------------------------------------------------------------------- /tests/fvde_test_encryption_context_plist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_encryption_context_plist.c -------------------------------------------------------------------------------- /tests/fvde_test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_error.c -------------------------------------------------------------------------------- /tests/fvde_test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_functions.c -------------------------------------------------------------------------------- /tests/fvde_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_functions.h -------------------------------------------------------------------------------- /tests/fvde_test_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_getopt.c -------------------------------------------------------------------------------- /tests/fvde_test_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_getopt.h -------------------------------------------------------------------------------- /tests/fvde_test_huffman_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_huffman_tree.c -------------------------------------------------------------------------------- /tests/fvde_test_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_io_handle.c -------------------------------------------------------------------------------- /tests/fvde_test_keyring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_keyring.c -------------------------------------------------------------------------------- /tests/fvde_test_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libbfio.h -------------------------------------------------------------------------------- /tests/fvde_test_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libcdata.h -------------------------------------------------------------------------------- /tests/fvde_test_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libcerror.h -------------------------------------------------------------------------------- /tests/fvde_test_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libclocale.h -------------------------------------------------------------------------------- /tests/fvde_test_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libcnotify.h -------------------------------------------------------------------------------- /tests/fvde_test_libfplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libfplist.h -------------------------------------------------------------------------------- /tests/fvde_test_libfvde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libfvde.h -------------------------------------------------------------------------------- /tests/fvde_test_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_libuna.h -------------------------------------------------------------------------------- /tests/fvde_test_logical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_logical_volume.c -------------------------------------------------------------------------------- /tests/fvde_test_logical_volume_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_logical_volume_descriptor.c -------------------------------------------------------------------------------- /tests/fvde_test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_macros.h -------------------------------------------------------------------------------- /tests/fvde_test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_memory.c -------------------------------------------------------------------------------- /tests/fvde_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_memory.h -------------------------------------------------------------------------------- /tests/fvde_test_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_metadata.c -------------------------------------------------------------------------------- /tests/fvde_test_metadata_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_metadata_block.c -------------------------------------------------------------------------------- /tests/fvde_test_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_notify.c -------------------------------------------------------------------------------- /tests/fvde_test_physical_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_physical_volume.c -------------------------------------------------------------------------------- /tests/fvde_test_physical_volume_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_physical_volume_descriptor.c -------------------------------------------------------------------------------- /tests/fvde_test_sector_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_sector_data.c -------------------------------------------------------------------------------- /tests/fvde_test_segment_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_segment_descriptor.c -------------------------------------------------------------------------------- /tests/fvde_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_support.c -------------------------------------------------------------------------------- /tests/fvde_test_tools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_tools_output.c -------------------------------------------------------------------------------- /tests/fvde_test_tools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_tools_signal.c -------------------------------------------------------------------------------- /tests/fvde_test_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_unused.h -------------------------------------------------------------------------------- /tests/fvde_test_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_volume.c -------------------------------------------------------------------------------- /tests/fvde_test_volume_data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_volume_data_handle.c -------------------------------------------------------------------------------- /tests/fvde_test_volume_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_volume_group.c -------------------------------------------------------------------------------- /tests/fvde_test_volume_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/fvde_test_volume_header.c -------------------------------------------------------------------------------- /tests/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/lsan.suppressions -------------------------------------------------------------------------------- /tests/pkgbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pkgbuild.sh -------------------------------------------------------------------------------- /tests/pyfvde_test_logical_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pyfvde_test_logical_volume.py -------------------------------------------------------------------------------- /tests/pyfvde_test_physical_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pyfvde_test_physical_volume.py -------------------------------------------------------------------------------- /tests/pyfvde_test_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pyfvde_test_support.py -------------------------------------------------------------------------------- /tests/pyfvde_test_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pyfvde_test_volume.py -------------------------------------------------------------------------------- /tests/pyfvde_test_volume_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/pyfvde_test_volume_group.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/syncsharedlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/syncsharedlibs.sh -------------------------------------------------------------------------------- /tests/test_fvdeinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_fvdeinfo.ps1 -------------------------------------------------------------------------------- /tests/test_fvdeinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_fvdeinfo.sh -------------------------------------------------------------------------------- /tests/test_library.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_library.ps1 -------------------------------------------------------------------------------- /tests/test_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_library.sh -------------------------------------------------------------------------------- /tests/test_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_manpage.sh -------------------------------------------------------------------------------- /tests/test_python_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_python_module.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_runner.sh -------------------------------------------------------------------------------- /tests/test_tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_tools.ps1 -------------------------------------------------------------------------------- /tests/test_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tests/test_tools.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfvde/HEAD/tox.ini --------------------------------------------------------------------------------