TrueCrypt 可編譯版本, 主要做了一些微調, 使得能通過vs2008, 並且不再吐出警告資訊, 源碼TrueCrypt-6-3-a-Src 下載, 需要自己下載以下編譯工具:
- vs 2008 VS 2010 download
- nasm nasm 下載後將 nasm.exe 檔解壓出來, 放到 system32 目錄裡
- gzip gzip 下載後將 gzip.exe 檔解壓出來, 放到 system32 目錄裡
- vc1.5 或這裡(本地) 下載後解壓到一個檔案夾, 如 d:\vc1.5 , 然後建立一個環境變數 MSVC16_ROOT = d:\vc1.5 這是微軟提供的最後一個能產生 16 位代碼的編譯工具
- WDK 微軟提供, 安裝後用目標目錄建立環境變數 BASEDIR, 如 BASEDIR = D:\WinDDK\7600.16385.1 這個工具用於編譯驅動
另:
- aes 密碼編譯演算法原始碼 aes (注: truecrypt 內也包含一份 aes 演算法原始碼.)
- aes 演算法的 flash 示範 Rijndael_Animation_v4_eng
- 詳盡的 aes 演算法解說
- Rijndael-Inspector-v1.1 is a small program made in Flash to encrypt/decrypt a 128-bit block of data and view the intermediate results as the Rijndael cipher progresses. I made it for an open source cryptography learning software called the CrypTool Project
- TrueCrypt 分析(1)
- TrueCrypt 分析(2)
- TrueCrypt 分析(3)
- TrueCrypt 分析(4)
- TrueCrypt 分析(5)
- 如何編譯 TrueCrypt 源碼