我需要从一个umounted的TrueCrypt磁盘加载一个文件到内存.有没有办法做这个方案? TrueCrypt是否提供API?
解决方法
可以不用
true crypt command line说System.Diagnostics.Process吗?
using System; using System.Diagnostics; namespace Test { class TrueCrypeStart { static void Main(string[] args) { string password = getPassword(...); Process tc= new Process(); tc.StartInfo.FileName = "TrueCrypt.exe"; tc.StartInfo.Arguments = string.Format("/v \"{0}\" /p \"{1}\" /q",...mount info ...,password); // for quiet! tc.Start(); } } }