Is there any way to encrypt video file in Darwin server? [closed]

StackOverflow https://stackoverflow.com/questions/8238372

  •  07-03-2021
  •  | 
  •  

سؤال

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

هل كانت مفيدة؟

المحلول

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top