为了安全地发送文件,我将加密/密码保护一个 zip 文件。(我为什么要这样做)。我正在使用 macOS Sierra 10.12.6,通过我的研究,我得出结论,在 macOS 上加密 zip 文件是通过以下方式完成的,
zip -e [newzip].zip [myFile].[extension]
这非常有效,但我想确保用于加密 zip 的算法/方法是安全的。不幸的是,我找不到任何关于该zip
命令用于加密的算法/方法的文档,无论是它的 AES-256 位、AES-128 位还是完全不同的东西。
的man
页面zip
没有帮助:
-e
--encrypt
Encrypt the contents of the zip archive using a password which
is entered on the terminal in response to a prompt (this will
not be echoed; if standard error is not a tty, zip will exit
with an error). The password prompt is repeated to save the
user from typing errors.
请在您的答案中包含所使用的算法、此信息的可能来源,如果不是 AES-256 位/AES-128 位,那么该算法/方法的安全性如何。