为了安全起见,对文件进行加密

发布于 2024-08-27 14:34:09 字数 125 浏览 4 评论 0原文

其实我有一个文件。我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

一百个冬季 2024-09-03 14:34:09

gpg --symmetrygpg --decrypt 应该做你想要的。

gpg --symmetric and gpg --decrypt should do what you want.

等往事风中吹 2024-09-03 14:34:09

很简单,使用openssl。

openssl enc -aes-256-cbc -salt -in plain.txt -out myultrasecretfile.enc

如果您想先压缩,那是您的选择。

Simple, use openssl.

openssl enc -aes-256-cbc -salt -in plain.txt -out myultrasecretfile.enc

If you want to compress before, that is your choice.

素食主义者 2024-09-03 14:34:09

我会使用 GPG

或者,您可以使用任何支持 AES 的 zip 库...

I would use GPG.

Or, you can use any zip library that supports AES...

花间憩 2024-09-03 14:34:09

您尝试过 vi -x filename 吗?它并不完全是功能齐全的加密,但它可能会满足您的需求。

Did you try vi -x filename ? It is not exactly full-featured encryption, but it might do what you want.

锦爱 2024-09-03 14:34:09

我喜欢 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文