9323223cd251f976dc2f654bf41844229f87c361
[openssl.git] / doc / apps / enc.pod
1 =pod
2
3 =head1 NAME
4
5 enc - symmetric cipher routines
6
7 =head1 SYNOPSIS
8
9 B<openssl enc -ciphername>
10 [B<-in filename>]
11 [B<-out filename>]
12 [B<-pass arg>]
13 [B<-e>]
14 [B<-d>]
15 [B<-a>]
16 [B<-A>]
17 [B<-k password>]
18 [B<-kfile filename>]
19 [B<-K key>]
20 [B<-iv IV>]
21 [B<-p>]
22 [B<-P>]
23 [B<-bufsize number>]
24 [B<-nopad>]
25 [B<-debug>]
26
27 =head1 DESCRIPTION
28
29 The symmetric cipher commands allow data to be encrypted or decrypted
30 using various block and stream ciphers using keys based on passwords
31 or explicitly provided. Base64 encoding or decoding can also be performed
32 either by itself or in addition to the encryption or decryption.
33
34 =head1 OPTIONS
35
36 =over 4
37
38 =item B<-in filename>
39
40 the input filename, standard input by default.
41
42 =item B<-out filename>
43
44 the output filename, standard output by default.
45
46 =item B<-pass arg>
47
48 the password source. For more information about the format of B<arg>
49 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
50
51 =item B<-salt>
52
53 use a salt in the key derivation routines. This option should B<ALWAYS>
54 be used unless compatibility with previous versions of OpenSSL or SSLeay
55 is required. This option is only present on OpenSSL versions 0.9.5 or
56 above.
57
58 =item B<-nosalt>
59
60 don't use a salt in the key derivation routines. This is the default for
61 compatibility with previous versions of OpenSSL and SSLeay.
62
63 =item B<-e>
64
65 encrypt the input data: this is the default.
66
67 =item B<-d>
68
69 decrypt the input data.
70
71 =item B<-a>
72
73 base64 process the data. This means that if encryption is taking place
74 the data is base64 encoded after encryption. If decryption is set then
75 the input data is base64 decoded before being decrypted.
76
77 =item B<-A>
78
79 if the B<-a> option is set then base64 process the data on one line.
80
81 =item B<-k password>
82
83 the password to derive the key from. This is for compatibility with previous
84 versions of OpenSSL. Superseded by the B<-pass> argument.
85
86 =item B<-kfile filename>
87
88 read the password to derive the key from the first line of B<filename>.
89 This is for computability with previous versions of OpenSSL. Superseded by
90 the B<-pass> argument.
91
92 =item B<-S salt>
93
94 the actual salt to use: this must be represented as a string comprised only
95 of hex digits.
96
97 =item B<-K key>
98
99 the actual key to use: this must be represented as a string comprised only
100 of hex digits.
101
102 =item B<-iv IV>
103
104 the actual IV to use: this must be represented as a string comprised only
105 of hex digits.
106
107 =item B<-p>
108
109 print out the key and IV used.
110
111 =item B<-P>
112
113 print out the key and IV used then immediately exit: don't do any encryption
114 or decryption.
115
116 =item B<-bufsize number>
117
118 set the buffer size for I/O
119
120 =item B<-nopad>
121
122 disable standard block padding
123
124 =item B<-debug>
125
126 debug the BIOs used for I/O.
127
128 =back
129
130 =head1 NOTES
131
132 The program can be called either as B<openssl ciphername> or
133 B<openssl enc -ciphername>.
134
135 A password will be prompted for to derive the key and IV if necessary.
136
137 The B<-salt> option should B<ALWAYS> be used if the key is being derived
138 from a password unless you want compatibility with previous versions of
139 OpenSSL and SSLeay.
140
141 Without the B<-salt> option it is possible to perform efficient dictionary
142 attacks on the password and to attack stream cipher encrypted data. The reason
143 for this is that without the salt the same password always generates the same
144 encryption key. When the salt is being used the first eight bytes of the
145 encrypted data are reserved for the salt: it is generated at random when
146 encrypting a file and read from the encrypted file when it is decrypted.
147
148 Some of the ciphers do not have large keys and others have security
149 implications if not used correctly. A beginner is advised to just use
150 a strong block cipher in CBC mode such as bf or des3.
151
152 All the block ciphers normally use PKCS#5 padding also known as standard block
153 padding: this allows a rudimentary integrity or password check to be
154 performed. However since the chance of random data passing the test is
155 better than 1 in 256 it isn't a very good test.
156
157 If padding is disabled then the input data must be a muliple of the cipher
158 block length.
159
160 All RC2 ciphers have the same key and effective key length.
161
162 Blowfish and RC5 algorithms use a 128 bit key.
163
164 =head1 SUPPORTED CIPHERS
165
166  base64             Base 64
167
168  bf-cbc             Blowfish in CBC mode
169  bf                 Alias for bf-cbc
170  bf-cfb             Blowfish in CFB mode
171  bf-ecb             Blowfish in ECB mode
172  bf-ofb             Blowfish in OFB mode
173
174  cast-cbc           CAST in CBC mode
175  cast               Alias for cast-cbc
176  cast5-cbc          CAST5 in CBC mode
177  cast5-cfb          CAST5 in CFB mode
178  cast5-ecb          CAST5 in ECB mode
179  cast5-ofb          CAST5 in OFB mode
180
181  des-cbc            DES in CBC mode
182  des                Alias for des-cbc
183  des-cfb            DES in CBC mode
184  des-ofb            DES in OFB mode
185  des-ecb            DES in ECB mode
186
187  des-ede-cbc        Two key triple DES EDE in CBC mode
188  des-ede            Alias for des-ede
189  des-ede-cfb        Two key triple DES EDE in CFB mode
190  des-ede-ofb        Two key triple DES EDE in OFB mode
191
192  des-ede3-cbc       Three key triple DES EDE in CBC mode
193  des-ede3           Alias for des-ede3-cbc
194  des3               Alias for des-ede3-cbc
195  des-ede3-cfb       Three key triple DES EDE CFB mode
196  des-ede3-ofb       Three key triple DES EDE in OFB mode
197
198  desx               DESX algorithm.
199
200  idea-cbc           IDEA algorithm in CBC mode
201  idea               same as idea-cbc
202  idea-cfb           IDEA in CFB mode
203  idea-ecb           IDEA in ECB mode
204  idea-ofb           IDEA in OFB mode
205
206  rc2-cbc            128 bit RC2 in CBC mode
207  rc2                Alias for rc2-cbc
208  rc2-cfb            128 bit RC2 in CBC mode
209  rc2-ecb            128 bit RC2 in CBC mode
210  rc2-ofb            128 bit RC2 in CBC mode
211  rc2-64-cbc         64 bit RC2 in CBC mode
212  rc2-40-cbc         40 bit RC2 in CBC mode
213
214  rc4                128 bit RC4
215  rc4-64             64 bit RC4
216  rc4-40             40 bit RC4
217
218  rc5-cbc            RC5 cipher in CBC mode
219  rc5                Alias for rc5-cbc
220  rc5-cfb            RC5 cipher in CBC mode
221  rc5-ecb            RC5 cipher in CBC mode
222  rc5-ofb            RC5 cipher in CBC mode
223
224 =head1 EXAMPLES
225
226 Just base64 encode a binary file:
227
228  openssl base64 -in file.bin -out file.b64
229
230 Decode the same file
231
232  openssl base64 -d -in file.b64 -out file.bin 
233
234 Encrypt a file using triple DES in CBC mode using a prompted password:
235
236  openssl des3 -salt -in file.txt -out file.des3 
237
238 Decrypt a file using a supplied password:
239
240  openssl des3 -d -salt -in file.des3 -out file.txt -k mypassword
241
242 Encrypt a file then base64 encode it (so it can be sent via mail for example)
243 using Blowfish in CBC mode:
244
245  openssl bf -a -salt -in file.txt -out file.bf
246
247 Base64 decode a file then decrypt it:
248
249  openssl bf -d -salt -a -in file.bf -out file.txt
250
251 Decrypt some data using a supplied 40 bit RC4 key:
252
253  openssl rc4-40 -in file.rc4 -out file.txt -K 0102030405
254
255 =head1 BUGS
256
257 The B<-A> option when used with large files doesn't work properly.
258
259 There should be an option to allow an iteration count to be included.
260
261 The B<enc> program only supports a fixed number of algorithms with
262 certain parameters. So if, for example, you want to use RC2 with a
263 76 bit key or RC4 with an 84 bit key you can't use this program.
264
265 =cut