├── .PackageInfo ├── .gitignore ├── ReadMe.md ├── TODO ├── bin ├── Makefile └── encrypted_drive_control.cpp ├── driver ├── Makefile ├── Worker.cpp ├── Worker.h ├── crypt.cpp ├── crypt.h ├── encrypted_drive.cpp └── encrypted_drive_icon.h ├── gui ├── ChangePasswordWindow.cpp ├── ChangePasswordWindow.h ├── ColorTools.h ├── ColumnListView.cpp ├── ColumnListView.h ├── ColumnTypes.cpp ├── ColumnTypes.h ├── DriveEncryption.cpp ├── DriveEncryption.h ├── DriveWindow.cpp ├── DriveWindow.h ├── FileSizeWindow.cpp ├── FileSizeWindow.h ├── Makefile ├── ObjectList.h ├── ObjectListPrivate.h ├── PasswordWindow.cpp ├── PasswordWindow.h ├── mount_support.cpp ├── mount_support.h ├── utility.cpp └── utility.h ├── headers ├── aes.h ├── crc32.h ├── encrypted_drive.h ├── gf_mul.h ├── random.h └── ripemd160.h ├── install-encryption.sh ├── lib ├── Makefile ├── TrueCrypt License.txt ├── aescrypt.c ├── aeskey.c ├── aesopt.h ├── aestab.c ├── aestab.h ├── crc32.c ├── gf_mul.c ├── random.cpp └── ripemd160.c ├── login ├── Login.cpp ├── LoginWindow.cpp ├── LoginWindow.h ├── Makefile ├── PaneSwitch.cpp ├── PaneSwitch.h ├── mount_support.cpp └── mount_support.h ├── makefile ├── test ├── Makefile └── crypt_test.cpp └── user_config_headers └── kernel_debug_config.h /.PackageInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/.PackageInfo -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/.gitignore -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/ReadMe.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/TODO -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/encrypted_drive_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/bin/encrypted_drive_control.cpp -------------------------------------------------------------------------------- /driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/Makefile -------------------------------------------------------------------------------- /driver/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/Worker.cpp -------------------------------------------------------------------------------- /driver/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/Worker.h -------------------------------------------------------------------------------- /driver/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/crypt.cpp -------------------------------------------------------------------------------- /driver/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/crypt.h -------------------------------------------------------------------------------- /driver/encrypted_drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/encrypted_drive.cpp -------------------------------------------------------------------------------- /driver/encrypted_drive_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/driver/encrypted_drive_icon.h -------------------------------------------------------------------------------- /gui/ChangePasswordWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ChangePasswordWindow.cpp -------------------------------------------------------------------------------- /gui/ChangePasswordWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ChangePasswordWindow.h -------------------------------------------------------------------------------- /gui/ColorTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ColorTools.h -------------------------------------------------------------------------------- /gui/ColumnListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ColumnListView.cpp -------------------------------------------------------------------------------- /gui/ColumnListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ColumnListView.h -------------------------------------------------------------------------------- /gui/ColumnTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ColumnTypes.cpp -------------------------------------------------------------------------------- /gui/ColumnTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ColumnTypes.h -------------------------------------------------------------------------------- /gui/DriveEncryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/DriveEncryption.cpp -------------------------------------------------------------------------------- /gui/DriveEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/DriveEncryption.h -------------------------------------------------------------------------------- /gui/DriveWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/DriveWindow.cpp -------------------------------------------------------------------------------- /gui/DriveWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/DriveWindow.h -------------------------------------------------------------------------------- /gui/FileSizeWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/FileSizeWindow.cpp -------------------------------------------------------------------------------- /gui/FileSizeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/FileSizeWindow.h -------------------------------------------------------------------------------- /gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/Makefile -------------------------------------------------------------------------------- /gui/ObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ObjectList.h -------------------------------------------------------------------------------- /gui/ObjectListPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/ObjectListPrivate.h -------------------------------------------------------------------------------- /gui/PasswordWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/PasswordWindow.cpp -------------------------------------------------------------------------------- /gui/PasswordWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/PasswordWindow.h -------------------------------------------------------------------------------- /gui/mount_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/mount_support.cpp -------------------------------------------------------------------------------- /gui/mount_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/mount_support.h -------------------------------------------------------------------------------- /gui/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/utility.cpp -------------------------------------------------------------------------------- /gui/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/gui/utility.h -------------------------------------------------------------------------------- /headers/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/aes.h -------------------------------------------------------------------------------- /headers/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/crc32.h -------------------------------------------------------------------------------- /headers/encrypted_drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/encrypted_drive.h -------------------------------------------------------------------------------- /headers/gf_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/gf_mul.h -------------------------------------------------------------------------------- /headers/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/random.h -------------------------------------------------------------------------------- /headers/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/headers/ripemd160.h -------------------------------------------------------------------------------- /install-encryption.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/install-encryption.sh -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/TrueCrypt License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/TrueCrypt License.txt -------------------------------------------------------------------------------- /lib/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/aescrypt.c -------------------------------------------------------------------------------- /lib/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/aeskey.c -------------------------------------------------------------------------------- /lib/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/aesopt.h -------------------------------------------------------------------------------- /lib/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/aestab.c -------------------------------------------------------------------------------- /lib/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/aestab.h -------------------------------------------------------------------------------- /lib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/crc32.c -------------------------------------------------------------------------------- /lib/gf_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/gf_mul.c -------------------------------------------------------------------------------- /lib/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/random.cpp -------------------------------------------------------------------------------- /lib/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/lib/ripemd160.c -------------------------------------------------------------------------------- /login/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/Login.cpp -------------------------------------------------------------------------------- /login/LoginWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/LoginWindow.cpp -------------------------------------------------------------------------------- /login/LoginWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/LoginWindow.h -------------------------------------------------------------------------------- /login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/Makefile -------------------------------------------------------------------------------- /login/PaneSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/PaneSwitch.cpp -------------------------------------------------------------------------------- /login/PaneSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/PaneSwitch.h -------------------------------------------------------------------------------- /login/mount_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/mount_support.cpp -------------------------------------------------------------------------------- /login/mount_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/login/mount_support.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/makefile -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/crypt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/test/crypt_test.cpp -------------------------------------------------------------------------------- /user_config_headers/kernel_debug_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axeld/driveencryption/HEAD/user_config_headers/kernel_debug_config.h --------------------------------------------------------------------------------