openssl enc

Description

Encrypt or decrypt files using various algorithms.

Command
openssl enc
Examples
Encrypt file with AES
openssl enc -aes-256-cbc -in file.txt -out file.enc
Decrypt file
openssl enc -aes-256-cbc -d -in file.enc -out file.txt
Parameters
Parameter Type Required Description
-aes-256-cbc string No Use AES-256-CBC encryption
-in string No Input file
-out string No Output file
-k string No Password/key
Command Info
Category: Encryption
Type: Openssl
Views: 12
Status: Active
Tags
encryption decryption files