├── .gitignore ├── bartpe ├── dcrypt.inf ├── dcrypt.script └── dcrypt.xml ├── boot ├── asm │ ├── macro.inc │ ├── mbr_boot.asm │ ├── stage1.asm │ └── struct.inc ├── bin │ └── .gitkeep ├── bios_misc.c ├── boot_hook.c ├── boot_hook.vcproj ├── boot_hook_small.vcproj ├── boot_load.c ├── boot_load.vcproj ├── boot_stage0.vcproj ├── dc_header.c ├── dc_io.c ├── hdd_io.c ├── hdd_scan.c ├── kbd_layout.c ├── misc.c ├── notes.txt ├── pe2boot.c └── pe2boot.vcproj ├── changes.txt ├── clean.bat ├── crypto ├── crypto_fast │ ├── aes_asm.h │ ├── aes_key.c │ ├── aes_key.h │ ├── aes_padlock.h │ ├── amd64 │ │ ├── aes_amd64.asm │ │ ├── aes_padlock_amd64.asm │ │ ├── twofish_amd64.asm │ │ ├── xts_aes_ni_amd64.asm │ │ ├── xts_serpent_avx_amd64.asm │ │ └── xts_serpent_sse2_amd64.asm │ ├── crc32.c │ ├── crc32.h │ ├── crypto_fast.vcproj │ ├── i386 │ │ ├── aes_i386.asm │ │ ├── aes_padlock_i386.asm │ │ ├── twofish_i386.asm │ │ ├── xts_aes_ni_i386.asm │ │ ├── xts_serpent_avx_i386.asm │ │ └── xts_serpent_sse2_i386.asm │ ├── pkcs5.c │ ├── pkcs5.h │ ├── serpent.c │ ├── serpent.h │ ├── sha512.c │ ├── sha512.h │ ├── twofish.c │ ├── twofish.h │ ├── xts_aes_ni.h │ ├── xts_fast.c │ ├── xts_fast.h │ ├── xts_serpent_avx.h │ ├── xts_serpent_sse2.c │ └── xts_serpent_sse2.h ├── crypto_small │ ├── aes_padlock_small.asm │ ├── aes_padlock_small.h │ ├── aes_small.c │ ├── aes_small.h │ ├── crypto_small.vcproj │ ├── pkcs5_small.c │ ├── pkcs5_small.h │ ├── serpent_small.c │ ├── serpent_small.h │ ├── sha512_small.c │ ├── sha512_small.h │ ├── twofish_small.c │ ├── twofish_small.h │ ├── xts_small.c │ ├── xts_small.h │ ├── xts_small_aes.c │ └── xts_small_aes.h └── tests │ ├── aes_test.c │ ├── aes_test.h │ ├── crc32_test.c │ ├── crc32_test.h │ ├── crypto_test_1.vcproj │ ├── crypto_test_2.vcproj │ ├── crypto_tests.c │ ├── pkcs5_test.c │ ├── pkcs5_test.h │ ├── serpent_test.c │ ├── serpent_test.h │ ├── sha512_test.c │ ├── sha512_test.h │ ├── twofish_test.c │ ├── twofish_test.h │ ├── xts_test.c │ └── xts_test.h ├── dcapi ├── cd_enc.c ├── dcapi.c ├── dcapi.vcproj ├── dcres.rc ├── disk_name.c ├── drv_ioctl.c ├── drvinst.c ├── keyfiles.c ├── mbrinst.c ├── misc.c └── rand.c ├── dccon ├── boot_menu.c ├── console.c ├── dccon.manifest ├── dccon.rc ├── dccon.vcproj └── main.c ├── dcinst ├── dcinst.c ├── dcinst.manifest ├── dcinst.rc └── dcinst.vcproj ├── dcrypt.sln ├── debug ├── amd64 │ └── .gitkeep ├── boot │ └── .gitkeep └── i386 │ └── .gitkeep ├── driver ├── benchmark.c ├── boot_pass.c ├── crypto_head.c ├── data_wipe.c ├── debug.c ├── devhook.c ├── device_io.c ├── disk_info.c ├── driver.c ├── driver.rc ├── driver.vcproj ├── dump_hook.c ├── enc_dec.c ├── fast_crypt.c ├── header_io.c ├── include │ ├── benchmark.h │ ├── boot_pass.h │ ├── crypto_head.h │ ├── data_wipe.h │ ├── debug.h │ ├── devhook.h │ ├── device_io.h │ ├── disk_info.h │ ├── driver.h │ ├── dump_hook.h │ ├── enc_dec.h │ ├── fast_crypt.h │ ├── header_io.h │ ├── inbv.h │ ├── io_control.h │ ├── mem_lock.h │ ├── minifilter.h │ ├── misc.h │ ├── misc_irp.h │ ├── misc_mem.h │ ├── misc_volume.h │ ├── mount.h │ ├── pnp_irp.h │ ├── prng.h │ ├── readwrite.h │ ├── ssd_trim.h │ └── storage.h ├── io_control.c ├── mem_lock.c ├── minifilter.c ├── misc.c ├── misc_irp.c ├── misc_mem.c ├── misc_volume.c ├── mount.c ├── pnp_irp.c ├── prng.c ├── readwrite.c ├── ssd_trim.c └── storage.c ├── gui ├── autorun.c ├── cdrom.bmp ├── cdrom_mask.bmp ├── check.bmp ├── check.mask.bmp ├── check_mask.bmp ├── dcrypt.manifest ├── disk.bmp ├── disk_mask.bmp ├── dlg_code.c ├── dlg_drives_list.c ├── dlg_menu.c ├── drives_list.c ├── gui.vcproj ├── hotkeys.c ├── icon.ico.ico ├── main.c ├── main.rc ├── pass.c ├── prc_code.c ├── prc_common.c ├── prc_keyfiles.c ├── prc_main.c ├── prc_options.c ├── prc_pass.c ├── prc_wizard_boot.c ├── prc_wizard_encrypt.c ├── resource.h ├── stat.c ├── subs.c ├── threads.c ├── ui_draw.c ├── ui_utils.c ├── undisk.bmp ├── undisk_mask.bmp └── version.rc ├── include ├── boot │ ├── bios.h │ ├── bios_misc.h │ ├── boot.h │ ├── boot_hook.h │ ├── boot_load.h │ ├── boot_vtab.h │ ├── dc_header.h │ ├── dc_io.h │ ├── e820.h │ ├── hdd.h │ ├── hdd_io.h │ ├── kbd_layout.h │ ├── malloc.h │ └── misc.h ├── dcapi │ ├── cd_enc.h │ ├── dcapi.h │ ├── dcres.h │ ├── disk_name.h │ ├── drv_ioctl.h │ ├── drvinst.h │ ├── keyfiles.h │ ├── mbrinst.h │ ├── misc.h │ └── rand.h ├── dccon │ ├── boot_menu.h │ ├── console.h │ └── main.h ├── dcconst.h ├── defines.h ├── gui │ ├── autorun.h │ ├── dlg_code.h │ ├── dlg_drives_list.h │ ├── dlg_menu.h │ ├── drives_list.h │ ├── hotkeys.h │ ├── main.h │ ├── pass.h │ ├── prc_code.h │ ├── prc_common.h │ ├── prc_keyfiles.h │ ├── prc_main.h │ ├── prc_options.h │ ├── prc_pass.h │ ├── prc_wizard_boot.h │ ├── prc_wizard_encrypt.h │ ├── stat.h │ ├── subs.h │ ├── threads.h │ ├── ui_draw.h │ └── ui_utils.h ├── hdd_scan.h ├── iso_fs.h ├── linklist.h ├── ntdll.h ├── version.h └── volume.h ├── lib ├── amd64 │ ├── msvcrt.lib │ └── ntdll.lib └── i386 │ ├── msvcrt.lib │ └── ntdll.lib ├── license.txt ├── make_bartpe.bat ├── make_dc.bat ├── make_release_nosign.bat ├── release ├── amd64 │ └── .gitkeep ├── boot │ └── .gitkeep ├── i386 │ └── .gitkeep └── uninst-5.2.3-c245c0fbb2.e32 └── setup └── setup.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/.gitignore -------------------------------------------------------------------------------- /bartpe/dcrypt.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/bartpe/dcrypt.inf -------------------------------------------------------------------------------- /bartpe/dcrypt.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/bartpe/dcrypt.script -------------------------------------------------------------------------------- /bartpe/dcrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/bartpe/dcrypt.xml -------------------------------------------------------------------------------- /boot/asm/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/asm/macro.inc -------------------------------------------------------------------------------- /boot/asm/mbr_boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/asm/mbr_boot.asm -------------------------------------------------------------------------------- /boot/asm/stage1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/asm/stage1.asm -------------------------------------------------------------------------------- /boot/asm/struct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/asm/struct.inc -------------------------------------------------------------------------------- /boot/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/bios_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/bios_misc.c -------------------------------------------------------------------------------- /boot/boot_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_hook.c -------------------------------------------------------------------------------- /boot/boot_hook.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_hook.vcproj -------------------------------------------------------------------------------- /boot/boot_hook_small.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_hook_small.vcproj -------------------------------------------------------------------------------- /boot/boot_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_load.c -------------------------------------------------------------------------------- /boot/boot_load.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_load.vcproj -------------------------------------------------------------------------------- /boot/boot_stage0.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/boot_stage0.vcproj -------------------------------------------------------------------------------- /boot/dc_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/dc_header.c -------------------------------------------------------------------------------- /boot/dc_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/dc_io.c -------------------------------------------------------------------------------- /boot/hdd_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/hdd_io.c -------------------------------------------------------------------------------- /boot/hdd_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/hdd_scan.c -------------------------------------------------------------------------------- /boot/kbd_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/kbd_layout.c -------------------------------------------------------------------------------- /boot/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/misc.c -------------------------------------------------------------------------------- /boot/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/notes.txt -------------------------------------------------------------------------------- /boot/pe2boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/pe2boot.c -------------------------------------------------------------------------------- /boot/pe2boot.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/boot/pe2boot.vcproj -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/changes.txt -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/clean.bat -------------------------------------------------------------------------------- /crypto/crypto_fast/aes_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/aes_asm.h -------------------------------------------------------------------------------- /crypto/crypto_fast/aes_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/aes_key.c -------------------------------------------------------------------------------- /crypto/crypto_fast/aes_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/aes_key.h -------------------------------------------------------------------------------- /crypto/crypto_fast/aes_padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/aes_padlock.h -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/aes_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/aes_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/aes_padlock_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/aes_padlock_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/twofish_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/twofish_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/xts_aes_ni_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/xts_aes_ni_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/xts_serpent_avx_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/xts_serpent_avx_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/amd64/xts_serpent_sse2_amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/amd64/xts_serpent_sse2_amd64.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/crc32.c -------------------------------------------------------------------------------- /crypto/crypto_fast/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/crc32.h -------------------------------------------------------------------------------- /crypto/crypto_fast/crypto_fast.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/crypto_fast.vcproj -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/aes_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/aes_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/aes_padlock_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/aes_padlock_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/twofish_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/twofish_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/xts_aes_ni_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/xts_aes_ni_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/xts_serpent_avx_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/xts_serpent_avx_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/i386/xts_serpent_sse2_i386.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/i386/xts_serpent_sse2_i386.asm -------------------------------------------------------------------------------- /crypto/crypto_fast/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/pkcs5.c -------------------------------------------------------------------------------- /crypto/crypto_fast/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/pkcs5.h -------------------------------------------------------------------------------- /crypto/crypto_fast/serpent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/serpent.c -------------------------------------------------------------------------------- /crypto/crypto_fast/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/serpent.h -------------------------------------------------------------------------------- /crypto/crypto_fast/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/sha512.c -------------------------------------------------------------------------------- /crypto/crypto_fast/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/sha512.h -------------------------------------------------------------------------------- /crypto/crypto_fast/twofish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/twofish.c -------------------------------------------------------------------------------- /crypto/crypto_fast/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/twofish.h -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_aes_ni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_aes_ni.h -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_fast.c -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_fast.h -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_serpent_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_serpent_avx.h -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_serpent_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_serpent_sse2.c -------------------------------------------------------------------------------- /crypto/crypto_fast/xts_serpent_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_fast/xts_serpent_sse2.h -------------------------------------------------------------------------------- /crypto/crypto_small/aes_padlock_small.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/aes_padlock_small.asm -------------------------------------------------------------------------------- /crypto/crypto_small/aes_padlock_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/aes_padlock_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/aes_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/aes_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/aes_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/aes_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/crypto_small.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/crypto_small.vcproj -------------------------------------------------------------------------------- /crypto/crypto_small/pkcs5_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/pkcs5_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/pkcs5_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/pkcs5_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/serpent_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/serpent_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/serpent_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/serpent_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/sha512_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/sha512_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/sha512_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/sha512_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/twofish_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/twofish_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/twofish_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/twofish_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/xts_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/xts_small.c -------------------------------------------------------------------------------- /crypto/crypto_small/xts_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/xts_small.h -------------------------------------------------------------------------------- /crypto/crypto_small/xts_small_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/xts_small_aes.c -------------------------------------------------------------------------------- /crypto/crypto_small/xts_small_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/crypto_small/xts_small_aes.h -------------------------------------------------------------------------------- /crypto/tests/aes_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/aes_test.c -------------------------------------------------------------------------------- /crypto/tests/aes_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_aes256(); -------------------------------------------------------------------------------- /crypto/tests/crc32_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/crc32_test.c -------------------------------------------------------------------------------- /crypto/tests/crc32_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_crc32(); -------------------------------------------------------------------------------- /crypto/tests/crypto_test_1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/crypto_test_1.vcproj -------------------------------------------------------------------------------- /crypto/tests/crypto_test_2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/crypto_test_2.vcproj -------------------------------------------------------------------------------- /crypto/tests/crypto_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/crypto_tests.c -------------------------------------------------------------------------------- /crypto/tests/pkcs5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/pkcs5_test.c -------------------------------------------------------------------------------- /crypto/tests/pkcs5_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_pkcs5(); -------------------------------------------------------------------------------- /crypto/tests/serpent_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/serpent_test.c -------------------------------------------------------------------------------- /crypto/tests/serpent_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_serpent256(); -------------------------------------------------------------------------------- /crypto/tests/sha512_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/sha512_test.c -------------------------------------------------------------------------------- /crypto/tests/sha512_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_sha512(); -------------------------------------------------------------------------------- /crypto/tests/twofish_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/twofish_test.c -------------------------------------------------------------------------------- /crypto/tests/twofish_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_twofish256(); -------------------------------------------------------------------------------- /crypto/tests/xts_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/crypto/tests/xts_test.c -------------------------------------------------------------------------------- /crypto/tests/xts_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_xts_mode(); -------------------------------------------------------------------------------- /dcapi/cd_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/cd_enc.c -------------------------------------------------------------------------------- /dcapi/dcapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/dcapi.c -------------------------------------------------------------------------------- /dcapi/dcapi.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/dcapi.vcproj -------------------------------------------------------------------------------- /dcapi/dcres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/dcres.rc -------------------------------------------------------------------------------- /dcapi/disk_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/disk_name.c -------------------------------------------------------------------------------- /dcapi/drv_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/drv_ioctl.c -------------------------------------------------------------------------------- /dcapi/drvinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/drvinst.c -------------------------------------------------------------------------------- /dcapi/keyfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/keyfiles.c -------------------------------------------------------------------------------- /dcapi/mbrinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/mbrinst.c -------------------------------------------------------------------------------- /dcapi/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/misc.c -------------------------------------------------------------------------------- /dcapi/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcapi/rand.c -------------------------------------------------------------------------------- /dccon/boot_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/boot_menu.c -------------------------------------------------------------------------------- /dccon/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/console.c -------------------------------------------------------------------------------- /dccon/dccon.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/dccon.manifest -------------------------------------------------------------------------------- /dccon/dccon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/dccon.rc -------------------------------------------------------------------------------- /dccon/dccon.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/dccon.vcproj -------------------------------------------------------------------------------- /dccon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dccon/main.c -------------------------------------------------------------------------------- /dcinst/dcinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcinst/dcinst.c -------------------------------------------------------------------------------- /dcinst/dcinst.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcinst/dcinst.manifest -------------------------------------------------------------------------------- /dcinst/dcinst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcinst/dcinst.rc -------------------------------------------------------------------------------- /dcinst/dcinst.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcinst/dcinst.vcproj -------------------------------------------------------------------------------- /dcrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/dcrypt.sln -------------------------------------------------------------------------------- /debug/amd64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug/i386/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /driver/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/benchmark.c -------------------------------------------------------------------------------- /driver/boot_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/boot_pass.c -------------------------------------------------------------------------------- /driver/crypto_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/crypto_head.c -------------------------------------------------------------------------------- /driver/data_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/data_wipe.c -------------------------------------------------------------------------------- /driver/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/debug.c -------------------------------------------------------------------------------- /driver/devhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/devhook.c -------------------------------------------------------------------------------- /driver/device_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/device_io.c -------------------------------------------------------------------------------- /driver/disk_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/disk_info.c -------------------------------------------------------------------------------- /driver/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/driver.c -------------------------------------------------------------------------------- /driver/driver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/driver.rc -------------------------------------------------------------------------------- /driver/driver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/driver.vcproj -------------------------------------------------------------------------------- /driver/dump_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/dump_hook.c -------------------------------------------------------------------------------- /driver/enc_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/enc_dec.c -------------------------------------------------------------------------------- /driver/fast_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/fast_crypt.c -------------------------------------------------------------------------------- /driver/header_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/header_io.c -------------------------------------------------------------------------------- /driver/include/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/benchmark.h -------------------------------------------------------------------------------- /driver/include/boot_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/boot_pass.h -------------------------------------------------------------------------------- /driver/include/crypto_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/crypto_head.h -------------------------------------------------------------------------------- /driver/include/data_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/data_wipe.h -------------------------------------------------------------------------------- /driver/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/debug.h -------------------------------------------------------------------------------- /driver/include/devhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/devhook.h -------------------------------------------------------------------------------- /driver/include/device_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/device_io.h -------------------------------------------------------------------------------- /driver/include/disk_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/disk_info.h -------------------------------------------------------------------------------- /driver/include/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/driver.h -------------------------------------------------------------------------------- /driver/include/dump_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/dump_hook.h -------------------------------------------------------------------------------- /driver/include/enc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/enc_dec.h -------------------------------------------------------------------------------- /driver/include/fast_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/fast_crypt.h -------------------------------------------------------------------------------- /driver/include/header_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/header_io.h -------------------------------------------------------------------------------- /driver/include/inbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/inbv.h -------------------------------------------------------------------------------- /driver/include/io_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/io_control.h -------------------------------------------------------------------------------- /driver/include/mem_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/mem_lock.h -------------------------------------------------------------------------------- /driver/include/minifilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/minifilter.h -------------------------------------------------------------------------------- /driver/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/misc.h -------------------------------------------------------------------------------- /driver/include/misc_irp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/misc_irp.h -------------------------------------------------------------------------------- /driver/include/misc_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/misc_mem.h -------------------------------------------------------------------------------- /driver/include/misc_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/misc_volume.h -------------------------------------------------------------------------------- /driver/include/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/mount.h -------------------------------------------------------------------------------- /driver/include/pnp_irp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/pnp_irp.h -------------------------------------------------------------------------------- /driver/include/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/prng.h -------------------------------------------------------------------------------- /driver/include/readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/readwrite.h -------------------------------------------------------------------------------- /driver/include/ssd_trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/ssd_trim.h -------------------------------------------------------------------------------- /driver/include/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/include/storage.h -------------------------------------------------------------------------------- /driver/io_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/io_control.c -------------------------------------------------------------------------------- /driver/mem_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/mem_lock.c -------------------------------------------------------------------------------- /driver/minifilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/minifilter.c -------------------------------------------------------------------------------- /driver/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/misc.c -------------------------------------------------------------------------------- /driver/misc_irp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/misc_irp.c -------------------------------------------------------------------------------- /driver/misc_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/misc_mem.c -------------------------------------------------------------------------------- /driver/misc_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/misc_volume.c -------------------------------------------------------------------------------- /driver/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/mount.c -------------------------------------------------------------------------------- /driver/pnp_irp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/pnp_irp.c -------------------------------------------------------------------------------- /driver/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/prng.c -------------------------------------------------------------------------------- /driver/readwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/readwrite.c -------------------------------------------------------------------------------- /driver/ssd_trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/ssd_trim.c -------------------------------------------------------------------------------- /driver/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/driver/storage.c -------------------------------------------------------------------------------- /gui/autorun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/autorun.c -------------------------------------------------------------------------------- /gui/cdrom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/cdrom.bmp -------------------------------------------------------------------------------- /gui/cdrom_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/cdrom_mask.bmp -------------------------------------------------------------------------------- /gui/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/check.bmp -------------------------------------------------------------------------------- /gui/check.mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/check.mask.bmp -------------------------------------------------------------------------------- /gui/check_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/check_mask.bmp -------------------------------------------------------------------------------- /gui/dcrypt.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/dcrypt.manifest -------------------------------------------------------------------------------- /gui/disk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/disk.bmp -------------------------------------------------------------------------------- /gui/disk_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/disk_mask.bmp -------------------------------------------------------------------------------- /gui/dlg_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/dlg_code.c -------------------------------------------------------------------------------- /gui/dlg_drives_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/dlg_drives_list.c -------------------------------------------------------------------------------- /gui/dlg_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/dlg_menu.c -------------------------------------------------------------------------------- /gui/drives_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/drives_list.c -------------------------------------------------------------------------------- /gui/gui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/gui.vcproj -------------------------------------------------------------------------------- /gui/hotkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/hotkeys.c -------------------------------------------------------------------------------- /gui/icon.ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/icon.ico.ico -------------------------------------------------------------------------------- /gui/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/main.c -------------------------------------------------------------------------------- /gui/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/main.rc -------------------------------------------------------------------------------- /gui/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/pass.c -------------------------------------------------------------------------------- /gui/prc_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_code.c -------------------------------------------------------------------------------- /gui/prc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_common.c -------------------------------------------------------------------------------- /gui/prc_keyfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_keyfiles.c -------------------------------------------------------------------------------- /gui/prc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_main.c -------------------------------------------------------------------------------- /gui/prc_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_options.c -------------------------------------------------------------------------------- /gui/prc_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_pass.c -------------------------------------------------------------------------------- /gui/prc_wizard_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_wizard_boot.c -------------------------------------------------------------------------------- /gui/prc_wizard_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/prc_wizard_encrypt.c -------------------------------------------------------------------------------- /gui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/resource.h -------------------------------------------------------------------------------- /gui/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/stat.c -------------------------------------------------------------------------------- /gui/subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/subs.c -------------------------------------------------------------------------------- /gui/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/threads.c -------------------------------------------------------------------------------- /gui/ui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/ui_draw.c -------------------------------------------------------------------------------- /gui/ui_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/ui_utils.c -------------------------------------------------------------------------------- /gui/undisk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/undisk.bmp -------------------------------------------------------------------------------- /gui/undisk_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/undisk_mask.bmp -------------------------------------------------------------------------------- /gui/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/gui/version.rc -------------------------------------------------------------------------------- /include/boot/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/bios.h -------------------------------------------------------------------------------- /include/boot/bios_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/bios_misc.h -------------------------------------------------------------------------------- /include/boot/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/boot.h -------------------------------------------------------------------------------- /include/boot/boot_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/boot_hook.h -------------------------------------------------------------------------------- /include/boot/boot_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/boot_load.h -------------------------------------------------------------------------------- /include/boot/boot_vtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/boot_vtab.h -------------------------------------------------------------------------------- /include/boot/dc_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/dc_header.h -------------------------------------------------------------------------------- /include/boot/dc_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/dc_io.h -------------------------------------------------------------------------------- /include/boot/e820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/e820.h -------------------------------------------------------------------------------- /include/boot/hdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/hdd.h -------------------------------------------------------------------------------- /include/boot/hdd_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/hdd_io.h -------------------------------------------------------------------------------- /include/boot/kbd_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/kbd_layout.h -------------------------------------------------------------------------------- /include/boot/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/malloc.h -------------------------------------------------------------------------------- /include/boot/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/boot/misc.h -------------------------------------------------------------------------------- /include/dcapi/cd_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/cd_enc.h -------------------------------------------------------------------------------- /include/dcapi/dcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/dcapi.h -------------------------------------------------------------------------------- /include/dcapi/dcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/dcres.h -------------------------------------------------------------------------------- /include/dcapi/disk_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/disk_name.h -------------------------------------------------------------------------------- /include/dcapi/drv_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/drv_ioctl.h -------------------------------------------------------------------------------- /include/dcapi/drvinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/drvinst.h -------------------------------------------------------------------------------- /include/dcapi/keyfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/keyfiles.h -------------------------------------------------------------------------------- /include/dcapi/mbrinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/mbrinst.h -------------------------------------------------------------------------------- /include/dcapi/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/misc.h -------------------------------------------------------------------------------- /include/dcapi/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcapi/rand.h -------------------------------------------------------------------------------- /include/dccon/boot_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dccon/boot_menu.h -------------------------------------------------------------------------------- /include/dccon/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dccon/console.h -------------------------------------------------------------------------------- /include/dccon/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dccon/main.h -------------------------------------------------------------------------------- /include/dcconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/dcconst.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/gui/autorun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/autorun.h -------------------------------------------------------------------------------- /include/gui/dlg_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/dlg_code.h -------------------------------------------------------------------------------- /include/gui/dlg_drives_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/dlg_drives_list.h -------------------------------------------------------------------------------- /include/gui/dlg_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/dlg_menu.h -------------------------------------------------------------------------------- /include/gui/drives_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/drives_list.h -------------------------------------------------------------------------------- /include/gui/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/hotkeys.h -------------------------------------------------------------------------------- /include/gui/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/main.h -------------------------------------------------------------------------------- /include/gui/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/pass.h -------------------------------------------------------------------------------- /include/gui/prc_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_code.h -------------------------------------------------------------------------------- /include/gui/prc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_common.h -------------------------------------------------------------------------------- /include/gui/prc_keyfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_keyfiles.h -------------------------------------------------------------------------------- /include/gui/prc_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_main.h -------------------------------------------------------------------------------- /include/gui/prc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_options.h -------------------------------------------------------------------------------- /include/gui/prc_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_pass.h -------------------------------------------------------------------------------- /include/gui/prc_wizard_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_wizard_boot.h -------------------------------------------------------------------------------- /include/gui/prc_wizard_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/prc_wizard_encrypt.h -------------------------------------------------------------------------------- /include/gui/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/stat.h -------------------------------------------------------------------------------- /include/gui/subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/subs.h -------------------------------------------------------------------------------- /include/gui/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/threads.h -------------------------------------------------------------------------------- /include/gui/ui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/ui_draw.h -------------------------------------------------------------------------------- /include/gui/ui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/gui/ui_utils.h -------------------------------------------------------------------------------- /include/hdd_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/hdd_scan.h -------------------------------------------------------------------------------- /include/iso_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/iso_fs.h -------------------------------------------------------------------------------- /include/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/linklist.h -------------------------------------------------------------------------------- /include/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/ntdll.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/version.h -------------------------------------------------------------------------------- /include/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/include/volume.h -------------------------------------------------------------------------------- /lib/amd64/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/lib/amd64/msvcrt.lib -------------------------------------------------------------------------------- /lib/amd64/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/lib/amd64/ntdll.lib -------------------------------------------------------------------------------- /lib/i386/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/lib/i386/msvcrt.lib -------------------------------------------------------------------------------- /lib/i386/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/lib/i386/ntdll.lib -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/license.txt -------------------------------------------------------------------------------- /make_bartpe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/make_bartpe.bat -------------------------------------------------------------------------------- /make_dc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/make_dc.bat -------------------------------------------------------------------------------- /make_release_nosign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/make_release_nosign.bat -------------------------------------------------------------------------------- /release/amd64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/i386/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/uninst-5.2.3-c245c0fbb2.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/release/uninst-5.2.3-c245c0fbb2.e32 -------------------------------------------------------------------------------- /setup/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legiar/diskcryptor/HEAD/setup/setup.iss --------------------------------------------------------------------------------