Browse Source

Improve help

master
Joel Parker Henderson 7 years ago
parent
commit
4a9e14ab36
  1. 36
      openssl-encrypt

36
openssl-encrypt

@ -2,24 +2,21 @@
#
# OpenSSL script to encrypt a file with our best settings.
#
# Example:
#
# $ openssl-encrypt foo.txt
# (prompt for password)
# #=> foo.txt.aes
# Syntax:
#
# openssl-encrypt <file>
#
## Related
# Example:
#
# These commands are related:
# $ openssl-encrypt foo.txt
#
# * `gpg-encrypt`: use GPG to encrypt a file using our best settings.
# Output is a new encrypted file:
#
# * `gpg-decrypt`: use GPG to decrypt a file using our best settings.
# example.txt.aes
#
# * `openssl-encrypt`: use OpenSLL to encrypt a file using our best settings.
# To decrypt the file:
#
# * `openssl-decrypt`: use OpenSSL to decrypt a file using our best settings.
# $ openssl-decrypt example.txt.aes
#
#
# ## Settings
@ -33,6 +30,23 @@
# * Salt
#
#
# ## See also
#
# These commands are similar:
#
# * [`gpg-encrypt`](https://github.com/SixArm/gpg-encrypt):
# use GPG to encrypt a file using our best settings.
#
# * [`gpg-decrypt`](https://github.com/SixArm/gpg-decrypt):
# use GPG to decrypt a file using our best settings.
#
# * [`openssl-encrypt`](https://github.com/SixArm/openssl-encrypt):
# use OpenSLL to encrypt a file using our best settings.
#
# * [`openssl-decrypt`](https://github.com/SixArm/openssl-decrypt):
# use OpenSSL to decrypt a file using our best settings.
#
#
# ## Command
#
# The command is:

Loading…
Cancel
Save