我需要从卸载的TrueCrypt磁盘中将文件加载到内存中。有什么办法以编程方式执行此操作吗? TrueCrypt是否提供API?

我认为最适合尝试此操作的方式是装入卷(当然,提示用户输入密码),打开文件然后卸载卷。有没有一种方法可以自动完成这一切?

我在Windows Vista上。我有C#,Python和Perl随时可用。

最佳答案

您不能使用System.Diagnostics.Process中的true crypt command line吗?

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();
        }
    }
}

关于c# - 有没有办法以编程方式将TrueCrypt磁盘中的文件读取到内存中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1315677/

10-10 05:10