如何在 C# 中将文件复制到 truecrypt 分区?
我想使用编程(c#)将文件复制到加密的 truecrypt
分区中,而不安装分区。
可能吗?
如果可以,请给我一个示例代码
来执行此操作!
谢谢你!
I would like to copy files into an encrypted truecrypt
partition using programming(c#) without mounting the partition.
Is it possible?
If so, may you give me an example code
to do this!
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能的? - 是的。
足够容易免费获得实施吗? - 可能不会。
TC 源代码是可用的,所以需要的加密材料就在那里。您可能希望将其移植到 C# 或构建一个可由您的 C# 程序调用的 dll。
此外,由于您没有安装容器/分区,因此您将需要一个用于内部任何文件系统的读取器/写入器。 FAT 应该很容易做到,但是说到 NTFS,您可能想看看开源的 NTFS 驱动程序......
possible? - yes.
easy enough to get an implementation for free? - probably not.
the TC source code is available, so the needed crypto stuff is there. you will probably want to port that to c# or build a dll that can be called by your c# prog.
additionally, since you are not mounting the container/partition, you will need a reader/writer for whatever filesystem is inside. FAT should be rather easy to do, but when it comes to NTFS, you maybe want to have a look at an open source NTFS driver ...