加密源代码
我处理相对敏感的代码,我们不希望这些代码落入坏人之手。 到目前为止,所有代码都保存在内部,因此这不是问题。 我将每周在家工作一两天,我们希望保护我笔记本电脑上的代码。
我们已经研究了一些替代方案,但 Windows EFS 和 Bitlocker 似乎是最明显的。 该笔记本电脑没有 TPM 硬件,而且我无法从家里访问 Active Directory,因此 EFS 看起来是一个选择。
基本上,还有其他人有任何替代方案,或者使用 EFS 加密源代码有问题吗?
I work on relatively sensitive code that we wouldn't want falling into the wrong hands. Up until now, all the code has been keep in house so it hasn't been an issue. I am moving to working from home a day or two a week and we want to secure the code on my laptop.
We have looked at a few alternatives, but Windows EFS and Bitlocker seem to be the most obvious. The laptop doesn't have TPM hardware, and I won't have access to Active Directory from home, so EFS looks to be the option.
Basically, does anyone else have any alternatives, or issues with using EFS to encrypt source code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
TrueCrypt,没有理由使用任何不同的东西。 它安全且免费...您还想要什么。
TrueCrypt, there's no excuse to use anything different. It's secure and it's free...what more could you want.
TrueCrypt +1。 我们在工作中使用它,非常棒。
提示:如果您有一个很大的代码库并且同时签出多个工作副本,那么如果每个工作副本都位于其自己的加密分区上,您将获得更好的性能。
+1 for TrueCrypt. We use it at work, it's great.
Tip: it seems that if you have a big codebase and you work with multiple working copies checked out simultaneously, you get much better performance if each working copy is on its own encrypted partition.
出于速度和简化问题,您可能想要加密部分数据而不是全部数据,但是,使用 Windows 加密卷也相当容易。 不要忘记,如果您必须加密整个源代码,那么请记住,您最好加密整个开发计算机,而不仅仅是单个卷,因为临时文件或交换文件可能包含解密的信息。
You MAY want to encrypt PARTS of the data instead of all of it for speed and simplification issues, however, using a windows encrypted volume would be fairly easy as well. Don't forget that if you must encrypt the entire source, then remember that you're best off encrypting the entire development machine, not just a single volume as temp files or swap files may contain the decrypted information.
Truecrypt:
Truecrypt:
您应该查看 TrueCrypt。 它是免费、开源的,并受多种平台支持。
You should look into TrueCrypt. It's free, open source and supported on a number of platforms.
我还推荐 Truecrypt
I would also recommend Truecrypt
我上次这样做是在几年前,但我们使用的是 PGPdisk。 它做得很好。
The last time I did this was a few years ago, but we used PGPdisk. It did a good job.
您应该考虑使用 truecrypt。 它会完成同样的事情,并且对您的系统的侵入要小一些。
You should consider using truecrypt. It would accomplish the same thing, and be a bit less invasive to your system.