Question

Is there any way to encrypt video file(.mp4) in Darwin server?

Was it helpful?

Solution

The openssl(1) tool is probably available on your OS X system.

Start it with openssl, then enter:

aes-128-cbc -in <filename> -out <filename> -e

That will encrypt the file. To decrypt, run the same program and give the same arguments, but use -d instead of -e.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top