Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
openssl(1) 工具可能在您的 OS X 系统上可用。
openssl(1)
使用 openssl 启动它,然后输入:
openssl
aes-128-cbc -in <filename> -out <filename> -e
这将加密文件。要解密,请运行相同的程序并提供相同的参数,但使用 -d 而不是 -e。
-d
-e
The openssl(1) tool is probably available on your OS X system.
Start it with openssl, then enter:
That will encrypt the file. To decrypt, run the same program and give the same arguments, but use -d instead of -e.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
openssl(1)
工具可能在您的 OS X 系统上可用。使用
openssl
启动它,然后输入:这将加密文件。要解密,请运行相同的程序并提供相同的参数,但使用
-d
而不是-e
。The
openssl(1)
tool is probably available on your OS X system.Start it with
openssl
, then enter:That will encrypt the file. To decrypt, run the same program and give the same arguments, but use
-d
instead of-e
.