- Messages
- 30
- Reaction score
- 0
- Points
- 27
First, launch the Terminal program.
To encrypt a file, type the following and press enter:
Enter a password after this command.
To decrypt a file, type the following and press enter:
Enter the password created when encrypting the file after this command.
To encrypt a file, type the following and press enter:
Code:
Openssl enc -aes-256-cbc -e -in **FILEPATH** -out **NEW FILEPATH**
Enter a password after this command.
To decrypt a file, type the following and press enter:
Code:
Openssl enc -aes-256-cbc -d -in **FILEPATH** -out **NEW FILEPATH**
Enter the password created when encrypting the file after this command.