Add -pass argument to 'enc'.

Fix to make Win32 compile work again.
This commit is contained in:
Dr. Stephen Henson
2000-02-17 00:41:43 +00:00
parent a3fe382e2d
commit cd3c54e50f
4 changed files with 29 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ enc - symmetric cipher routines
B<openssl enc -ciphername>
[B<-in filename>]
[B<-out filename>]
[B<-pass arg>]
[B<-e>]
[B<-d>]
[B<-a>]
@@ -41,6 +42,11 @@ the input filename, standard input by default.
the output filename, standard output by default.
=item B<-pass arg>
the password source. For more information about the format of B<arg>
see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
=item B<-salt>
use a salt in the key derivation routines. This option should B<ALWAYS>
@@ -73,11 +79,14 @@ if the B<-a> option is set then base64 process the data on one line.
=item B<-k password>
the password to derive the key from.
the password to derive the key from. This is for compatibility with previous
versions of OpenSSL. Superseded by the B<-pass> argument.
=item B<-kfile filename>
read the password to derive the key from the first line of B<filename>
read the password to derive the key from the first line of B<filename>.
This is for computability with previous versions of OpenSSL. Superseded by
the B<-pass> argument.
=item B<-S salt>