Truecrypt的代码分析
在使用truecrypt接口的时候,实际上不需要非常了解truecrypt的源码,只需要了解truecrypt对外的接口就可以,如果调用truecrypt的接口,来实现我们想要的功能。
之前转载的四篇介绍truecrypt基本接口的文章,已经作了详细的说明。
TrueCrypt原理与系统开发(1):TrueCrypt Format创建加密卷
TrueCrypt原理与系统开发(2):TrueCrypt Mount加载虚拟磁盘
TrueCrypt原理与系统开发(3):TrueCrypt Mount卸载虚拟磁盘
TrueCrypt原理与系统开发(4):TrueCrypt Mount更改加密卷密码
加载加密磁盘结构体
struct MountOptions
{
bool CachePassword; // 是否使用缓存密码
wstring FilesystemOptions;
wstring FilesystemType;
shared_ptr <KeyfileList> Keyfiles;
shared_ptr <DirectoryPath> MountPoint;
bool NoFilesystem;
bool NoHardwareCrypto;
bool NoKernelCrypto;
shared_ptr <VolumePassword> Password;
bool PartitionInSystemEncryptionScope;
shared_ptr <VolumePath> Path;
bool PreserveTimestamps;