c# – 有没有办法将文件从TrueCrypt磁盘读入内存?

前端之家收集整理的这篇文章主要介绍了c# – 有没有办法将文件从TrueCrypt磁盘读入内存?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从一个umounted的TrueCrypt磁盘加载一个文件到内存.有没有办法做这个方案? TrueCrypt是否提供API?

我认为最好的方式是尝试安装该卷(当然提示用户输入密码),打开该文件,然后卸载该卷.有没有办法自动完成这项工作?

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

解决方法

可以不用 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();
        }
    }
}
原文链接:https://www.f2er.com/csharp/96502.html

猜你在找的C#相关文章