mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
9 lines
200 B
Plaintext
9 lines
200 B
Plaintext
# Crypt
|
|
Description: A wrapper around openssl that facilitates encrypting and decrypting files.
|
|
|
|
# Encrypt a file
|
|
crypt -e fileToEncrypt outputFile
|
|
|
|
# Decrypt a file
|
|
crypt -d fileToDecrypt outputFile
|