Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在达尔文服务器中加密视频文件(.mp4)?
该openssl(1)工具可能在您的 OS X 系统上可用。
openssl(1)
以 开头openssl,然后输入:
openssl
aes-128-cbc -in <filename> -out <filename> -e
这将加密文件。要解密,运行相同的程序并给出相同的参数,但使用-d而不是-e.
-d
-e