为了安全起见,对文件进行加密
其实我有一个文件。我在linux环境下工作。 为了安全起见,我需要通过提供一些密码来加密该文件。 该操作可以像 zip 、 tar 一样进行任何压缩。当我提取文件时它应该问 我的密码,只有这样它才能被提取
提前致谢
Actually I have a file . I am working in linux environment.
I need to encrypt that file for secure purpose with giving the some password.
The operation could be like zip , tar any compression. When I extract the file It should ask
me password , only then it should get extracted
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
gpg --symmetry
和gpg --decrypt
应该做你想要的。gpg --symmetric
andgpg --decrypt
should do what you want.很简单,使用openssl。
如果您想先压缩,那是您的选择。
Simple, use openssl.
If you want to compress before, that is your choice.
我会使用 GPG。
或者,您可以使用任何支持 AES 的 zip 库...
I would use GPG.
Or, you can use any zip library that supports AES...
您尝试过 vi -x filename 吗?它并不完全是功能齐全的加密,但它可能会满足您的需求。
Did you try
vi -x filename
? It is not exactly full-featured encryption, but it might do what you want.我喜欢 aespipe,因为您可以从命令行或脚本完全非交互地使用它,并且它可以处理任何数据流。
i like
aespipe
as you can use it completely non-interactively from command line or scripts, and it will work with any stream of data.