2ec4d169b12b1ec7df4cacae66fc6ecb12c6983b
[openssl.git] / doc / man1 / enc.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-enc,
6 enc - symmetric cipher routines
7
8 =head1 SYNOPSIS
9
10 B<openssl enc -I<cipher>>
11 [B<-help>]
12 [B<-ciphers>]
13 [B<-in filename>]
14 [B<-out filename>]
15 [B<-pass arg>]
16 [B<-e>]
17 [B<-d>]
18 [B<-a>]
19 [B<-base64>]
20 [B<-A>]
21 [B<-k password>]
22 [B<-kfile filename>]
23 [B<-K key>]
24 [B<-iv IV>]
25 [B<-S salt>]
26 [B<-salt>]
27 [B<-nosalt>]
28 [B<-z>]
29 [B<-md digest>]
30 [B<-p>]
31 [B<-P>]
32 [B<-bufsize number>]
33 [B<-nopad>]
34 [B<-debug>]
35 [B<-none>]
36 [B<-rand file...>]
37 [B<-writerand file>]
38 [B<-engine id>]
39
40 B<openssl> I<[cipher]> [B<...>]
41
42 =head1 DESCRIPTION
43
44 The symmetric cipher commands allow data to be encrypted or decrypted
45 using various block and stream ciphers using keys based on passwords
46 or explicitly provided. Base64 encoding or decoding can also be performed
47 either by itself or in addition to the encryption or decryption.
48
49 =head1 OPTIONS
50
51 =over 4
52
53 =item B<-help>
54
55 Print out a usage message.
56
57 =item B<-ciphers>
58
59 List all supported ciphers.
60
61 =item B<-in filename>
62
63 The input filename, standard input by default.
64
65 =item B<-out filename>
66
67 The output filename, standard output by default.
68
69 =item B<-pass arg>
70
71 The password source. For more information about the format of B<arg>
72 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
73
74 =item B<-e>
75
76 Encrypt the input data: this is the default.
77
78 =item B<-d>
79
80 Decrypt the input data.
81
82 =item B<-a>
83
84 Base64 process the data. This means that if encryption is taking place
85 the data is base64 encoded after encryption. If decryption is set then
86 the input data is base64 decoded before being decrypted.
87
88 =item B<-base64>
89
90 Same as B<-a>
91
92 =item B<-A>
93
94 If the B<-a> option is set then base64 process the data on one line.
95
96 =item B<-k password>
97
98 The password to derive the key from. This is for compatibility with previous
99 versions of OpenSSL. Superseded by the B<-pass> argument.
100
101 =item B<-kfile filename>
102
103 Read the password to derive the key from the first line of B<filename>.
104 This is for compatibility with previous versions of OpenSSL. Superseded by
105 the B<-pass> argument.
106
107 =item B<-md digest>
108
109 Use the specified digest to create the key from the passphrase.
110 The default algorithm is sha-256.
111
112 =item B<-nosalt>
113
114 Don't use a salt in the key derivation routines. This option B<SHOULD NOT> be
115 used except for test purposes or compatibility with ancient versions of
116 OpenSSL.
117
118 =item B<-salt>
119
120 Use salt (randomly generated or provide with B<-S> option) when
121 encrypting, this is the default.
122
123 =item B<-S salt>
124
125 The actual salt to use: this must be represented as a string of hex digits.
126
127 =item B<-K key>
128
129 The actual key to use: this must be represented as a string comprised only
130 of hex digits. If only the key is specified, the IV must additionally specified
131 using the B<-iv> option. When both a key and a password are specified, the
132 key given with the B<-K> option will be used and the IV generated from the
133 password will be taken. It does not make much sense to specify both key
134 and password.
135
136 =item B<-iv IV>
137
138 The actual IV to use: this must be represented as a string comprised only
139 of hex digits. When only the key is specified using the B<-K> option, the
140 IV must explicitly be defined. When a password is being specified using
141 one of the other options, the IV is generated from this password.
142
143 =item B<-p>
144
145 Print out the key and IV used.
146
147 =item B<-P>
148
149 Print out the key and IV used then immediately exit: don't do any encryption
150 or decryption.
151
152 =item B<-bufsize number>
153
154 Set the buffer size for I/O.
155
156 =item B<-nopad>
157
158 Disable standard block padding.
159
160 =item B<-debug>
161
162 Debug the BIOs used for I/O.
163
164 =item B<-z>
165
166 Compress or decompress clear text using zlib before encryption or after
167 decryption. This option exists only if OpenSSL with compiled with zlib
168 or zlib-dynamic option.
169
170 =item B<-none>
171
172 Use NULL cipher (no encryption or decryption of input).
173
174 =item B<-rand file...>
175
176 A file or files containing random data used to seed the random number
177 generator.
178 Multiple files can be specified separated by an OS-dependent character.
179 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
180 all others.
181
182 =item [B<-writerand file>]
183
184 Writes random data to the specified I<file> upon exit.
185 This can be used with a subsequent B<-rand> flag.
186
187 =back
188
189 =head1 NOTES
190
191 The program can be called either as B<openssl cipher> or
192 B<openssl enc -cipher>. The first form doesn't work with
193 engine-provided ciphers, because this form is processed before the
194 configuration file is read and any ENGINEs loaded.
195 Use the B<list> command to get a list of supported ciphers.
196
197 Engines which provide entirely new encryption algorithms (such as the ccgost
198 engine which provides gost89 algorithm) should be configured in the
199 configuration file. Engines specified on the command line using -engine
200 options can only be used for hardware-assisted implementations of
201 ciphers which are supported by the OpenSSL core or another engine specified
202 in the configuration file.
203
204 When the enc command lists supported ciphers, ciphers provided by engines,
205 specified in the configuration files are listed too.
206
207 A password will be prompted for to derive the key and IV if necessary.
208
209 The B<-salt> option should B<ALWAYS> be used if the key is being derived
210 from a password unless you want compatibility with previous versions of
211 OpenSSL.
212
213 Without the B<-salt> option it is possible to perform efficient dictionary
214 attacks on the password and to attack stream cipher encrypted data. The reason
215 for this is that without the salt the same password always generates the same
216 encryption key. When the salt is being used the first eight bytes of the
217 encrypted data are reserved for the salt: it is generated at random when
218 encrypting a file and read from the encrypted file when it is decrypted.
219
220 Some of the ciphers do not have large keys and others have security
221 implications if not used correctly. A beginner is advised to just use
222 a strong block cipher, such as AES, in CBC mode.
223
224 All the block ciphers normally use PKCS#5 padding, also known as standard
225 block padding. This allows a rudimentary integrity or password check to
226 be performed. However since the chance of random data passing the test
227 is better than 1 in 256 it isn't a very good test.
228
229 If padding is disabled then the input data must be a multiple of the cipher
230 block length.
231
232 All RC2 ciphers have the same key and effective key length.
233
234 Blowfish and RC5 algorithms use a 128 bit key.
235
236 =head1 SUPPORTED CIPHERS
237
238 Note that some of these ciphers can be disabled at compile time
239 and some are available only if an appropriate engine is configured
240 in the configuration file. The output of the B<enc> command run with
241 the B<-ciphers> option (that is B<openssl enc -ciphers>) produces a
242 list of ciphers, supported by your version of OpenSSL, including
243 ones provided by configured engines.
244
245 The B<enc> program does not support authenticated encryption modes
246 like CCM and GCM. The utility does not store or retrieve the
247 authentication tag.
248
249
250  base64             Base 64
251
252  bf-cbc             Blowfish in CBC mode
253  bf                 Alias for bf-cbc
254  bf-cfb             Blowfish in CFB mode
255  bf-ecb             Blowfish in ECB mode
256  bf-ofb             Blowfish in OFB mode
257
258  cast-cbc           CAST in CBC mode
259  cast               Alias for cast-cbc
260  cast5-cbc          CAST5 in CBC mode
261  cast5-cfb          CAST5 in CFB mode
262  cast5-ecb          CAST5 in ECB mode
263  cast5-ofb          CAST5 in OFB mode
264
265  des-cbc            DES in CBC mode
266  des                Alias for des-cbc
267  des-cfb            DES in CFB mode
268  des-ofb            DES in OFB mode
269  des-ecb            DES in ECB mode
270
271  des-ede-cbc        Two key triple DES EDE in CBC mode
272  des-ede            Two key triple DES EDE in ECB mode
273  des-ede-cfb        Two key triple DES EDE in CFB mode
274  des-ede-ofb        Two key triple DES EDE in OFB mode
275
276  des-ede3-cbc       Three key triple DES EDE in CBC mode
277  des-ede3           Three key triple DES EDE in ECB mode
278  des3               Alias for des-ede3-cbc
279  des-ede3-cfb       Three key triple DES EDE CFB mode
280  des-ede3-ofb       Three key triple DES EDE in OFB mode
281
282  desx               DESX algorithm.
283
284  gost89             GOST 28147-89 in CFB mode (provided by ccgost engine)
285  gost89-cnt        `GOST 28147-89 in CNT mode (provided by ccgost engine)
286
287  idea-cbc           IDEA algorithm in CBC mode
288  idea               same as idea-cbc
289  idea-cfb           IDEA in CFB mode
290  idea-ecb           IDEA in ECB mode
291  idea-ofb           IDEA in OFB mode
292
293  rc2-cbc            128 bit RC2 in CBC mode
294  rc2                Alias for rc2-cbc
295  rc2-cfb            128 bit RC2 in CFB mode
296  rc2-ecb            128 bit RC2 in ECB mode
297  rc2-ofb            128 bit RC2 in OFB mode
298  rc2-64-cbc         64 bit RC2 in CBC mode
299  rc2-40-cbc         40 bit RC2 in CBC mode
300
301  rc4                128 bit RC4
302  rc4-64             64 bit RC4
303  rc4-40             40 bit RC4
304
305  rc5-cbc            RC5 cipher in CBC mode
306  rc5                Alias for rc5-cbc
307  rc5-cfb            RC5 cipher in CFB mode
308  rc5-ecb            RC5 cipher in ECB mode
309  rc5-ofb            RC5 cipher in OFB mode
310
311  aes-[128|192|256]-cbc  128/192/256 bit AES in CBC mode
312  aes[128|192|256]       Alias for aes-[128|192|256]-cbc
313  aes-[128|192|256]-cfb  128/192/256 bit AES in 128 bit CFB mode
314  aes-[128|192|256]-cfb1 128/192/256 bit AES in 1 bit CFB mode
315  aes-[128|192|256]-cfb8 128/192/256 bit AES in 8 bit CFB mode
316  aes-[128|192|256]-ctr  128/192/256 bit AES in CTR mode
317  aes-[128|192|256]-ecb  128/192/256 bit AES in ECB mode
318  aes-[128|192|256]-ofb  128/192/256 bit AES in OFB mode
319
320  camellia-[128|192|256]-cbc  128/192/256 bit Camellia in CBC mode
321  camellia[128|192|256]       Alias for camellia-[128|192|256]-cbc
322  camellia-[128|192|256]-cfb  128/192/256 bit Camellia in 128 bit CFB mode
323  camellia-[128|192|256]-cfb1 128/192/256 bit Camellia in 1 bit CFB mode
324  camellia-[128|192|256]-cfb8 128/192/256 bit Camellia in 8 bit CFB mode
325  camellia-[128|192|256]-ctr  128/192/256 bit Camellia in CTR mode
326  camellia-[128|192|256]-ecb  128/192/256 bit Camellia in ECB mode
327  camellia-[128|192|256]-ofb  128/192/256 bit Camellia in OFB mode
328
329 =head1 EXAMPLES
330
331 Just base64 encode a binary file:
332
333  openssl base64 -in file.bin -out file.b64
334
335 Decode the same file
336
337  openssl base64 -d -in file.b64 -out file.bin
338
339 Encrypt a file using triple DES in CBC mode using a prompted password:
340
341  openssl des3 -salt -in file.txt -out file.des3
342
343 Decrypt a file using a supplied password:
344
345  openssl des3 -d -salt -in file.des3 -out file.txt -k mypassword
346
347 Encrypt a file then base64 encode it (so it can be sent via mail for example)
348 using Blowfish in CBC mode:
349
350  openssl bf -a -salt -in file.txt -out file.bf
351
352 Base64 decode a file then decrypt it:
353
354  openssl bf -d -salt -a -in file.bf -out file.txt
355
356 Decrypt some data using a supplied 40 bit RC4 key:
357
358  openssl rc4-40 -in file.rc4 -out file.txt -K 0102030405
359
360 =head1 BUGS
361
362 The B<-A> option when used with large files doesn't work properly.
363
364 There should be an option to allow an iteration count to be included.
365
366 The B<enc> program only supports a fixed number of algorithms with
367 certain parameters. So if, for example, you want to use RC2 with a
368 76 bit key or RC4 with an 84 bit key you can't use this program.
369
370 =head1 HISTORY
371
372 The default digest was changed from MD5 to SHA256 in Openssl 1.1.0.
373
374 =head1 COPYRIGHT
375
376 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
377
378 Licensed under the OpenSSL license (the "License").  You may not use
379 this file except in compliance with the License.  You can obtain a copy
380 in the file LICENSE in the source distribution or at
381 L<https://www.openssl.org/source/license.html>.
382
383 =cut