really fix automatic ;-)
[openssl.git] / doc / crypto / EVP_EncryptInit.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_CIPHER_CTX_init, EVP_EncryptInit_ex, EVP_EncryptUpdate,
6 EVP_EncryptFinal_ex, EVP_DecryptInit_ex, EVP_DecryptUpdate,
7 EVP_DecryptFinal_ex, EVP_CipherInit_ex, EVP_CipherUpdate,
8 EVP_CipherFinal_ex, EVP_CIPHER_CTX_set_key_length,
9 EVP_CIPHER_CTX_ctrl, EVP_CIPHER_CTX_cleanup, EVP_EncryptInit,
10 EVP_EncryptFinal, EVP_DecryptInit, EVP_DecryptFinal,
11 EVP_CipherInit, EVP_CipherFinal, EVP_get_cipherbyname,
12 EVP_get_cipherbynid, EVP_get_cipherbyobj, EVP_CIPHER_nid,
13 EVP_CIPHER_block_size, EVP_CIPHER_key_length, EVP_CIPHER_iv_length,
14 EVP_CIPHER_flags, EVP_CIPHER_mode, EVP_CIPHER_type, EVP_CIPHER_CTX_cipher,
15 EVP_CIPHER_CTX_nid, EVP_CIPHER_CTX_block_size, EVP_CIPHER_CTX_key_length,
16 EVP_CIPHER_CTX_iv_length, EVP_CIPHER_CTX_get_app_data,
17 EVP_CIPHER_CTX_set_app_data, EVP_CIPHER_CTX_type, EVP_CIPHER_CTX_flags,
18 EVP_CIPHER_CTX_mode, EVP_CIPHER_param_to_asn1, EVP_CIPHER_asn1_to_param,
19 EVP_CIPHER_CTX_set_padding - EVP cipher routines
20
21 =head1 SYNOPSIS
22
23  #include <openssl/evp.h>
24
25  void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *a);
26
27  int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
28          ENGINE *impl, unsigned char *key, unsigned char *iv);
29  int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
30          int *outl, unsigned char *in, int inl);
31  int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
32          int *outl);
33
34  int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
35          ENGINE *impl, unsigned char *key, unsigned char *iv);
36  int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
37          int *outl, unsigned char *in, int inl);
38  int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm,
39          int *outl);
40
41  int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
42          ENGINE *impl, unsigned char *key, unsigned char *iv, int enc);
43  int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
44          int *outl, unsigned char *in, int inl);
45  int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm,
46          int *outl);
47
48  int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
49          unsigned char *key, unsigned char *iv);
50  int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out,
51          int *outl);
52
53  int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
54          unsigned char *key, unsigned char *iv);
55  int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm,
56          int *outl);
57
58  int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
59          unsigned char *key, unsigned char *iv, int enc);
60  int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *outm,
61          int *outl);
62
63  int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *x, int padding);
64  int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *x, int keylen);
65  int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
66  int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *a);
67
68  const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
69  #define EVP_get_cipherbynid(a) EVP_get_cipherbyname(OBJ_nid2sn(a))
70  #define EVP_get_cipherbyobj(a) EVP_get_cipherbynid(OBJ_obj2nid(a))
71
72  #define EVP_CIPHER_nid(e)              ((e)->nid)
73  #define EVP_CIPHER_block_size(e)       ((e)->block_size)
74  #define EVP_CIPHER_key_length(e)       ((e)->key_len)
75  #define EVP_CIPHER_iv_length(e)                ((e)->iv_len)
76  #define EVP_CIPHER_flags(e)            ((e)->flags)
77  #define EVP_CIPHER_mode(e)             ((e)->flags) & EVP_CIPH_MODE)
78  int EVP_CIPHER_type(const EVP_CIPHER *ctx);
79
80  #define EVP_CIPHER_CTX_cipher(e)       ((e)->cipher)
81  #define EVP_CIPHER_CTX_nid(e)          ((e)->cipher->nid)
82  #define EVP_CIPHER_CTX_block_size(e)   ((e)->cipher->block_size)
83  #define EVP_CIPHER_CTX_key_length(e)   ((e)->key_len)
84  #define EVP_CIPHER_CTX_iv_length(e)    ((e)->cipher->iv_len)
85  #define EVP_CIPHER_CTX_get_app_data(e) ((e)->app_data)
86  #define EVP_CIPHER_CTX_set_app_data(e,d) ((e)->app_data=(char *)(d))
87  #define EVP_CIPHER_CTX_type(c)         EVP_CIPHER_type(EVP_CIPHER_CTX_cipher(c))
88  #define EVP_CIPHER_CTX_flags(e)                ((e)->cipher->flags)
89  #define EVP_CIPHER_CTX_mode(e)         ((e)->cipher->flags & EVP_CIPH_MODE)
90
91  int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
92  int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
93
94 =head1 DESCRIPTION
95
96 The EVP cipher routines are a high level interface to certain
97 symmetric ciphers.
98
99 EVP_CIPHER_CTX_init() initializes cipher contex B<ctx>.
100
101 EVP_EncryptInit_ex() sets up cipher context B<ctx> for encryption
102 with cipher B<type> from ENGINE B<impl>. B<ctx> must be initialized
103 before calling this function. B<type> is normally supplied
104 by a function such as EVP_des_cbc(). If B<impl> is NULL then the
105 default implementation is used. B<key> is the symmetric key to use
106 and B<iv> is the IV to use (if necessary), the actual number of bytes
107 used for the key and IV depends on the cipher. It is possible to set
108 all parameters to NULL except B<type> in an initial call and supply
109 the remaining parameters in subsequent calls, all of which have B<type>
110 set to NULL. This is done when the default cipher parameters are not
111 appropriate.
112
113 EVP_EncryptUpdate() encrypts B<inl> bytes from the buffer B<in> and
114 writes the encrypted version to B<out>. This function can be called
115 multiple times to encrypt successive blocks of data. The amount
116 of data written depends on the block alignment of the encrypted data:
117 as a result the amount of data written may be anything from zero bytes
118 to (inl + cipher_block_size - 1) so B<outl> should contain sufficient
119 room. The actual number of bytes written is placed in B<outl>.
120
121 If padding is enabled (the default) then EVP_EncryptFinal_ex() encrypts
122 the "final" data, that is any data that remains in a partial block.
123 It uses L<standard block padding|/NOTES> (aka PKCS padding). The encrypted
124 final data is written to B<out> which should have sufficient space for
125 one cipher block. The number of bytes written is placed in B<outl>. After
126 this function is called the encryption operation is finished and no further
127 calls to EVP_EncryptUpdate() should be made.
128
129 If padding is disabled then EVP_EncryptFinal_ex() will not encrypt any more
130 data and it will return an error if any data remains in a partial block:
131 that is if the total data length is not a multiple of the block size. 
132
133 EVP_DecryptInit_ex(), EVP_DecryptUpdate() and EVP_DecryptFinal_ex() are the
134 corresponding decryption operations. EVP_DecryptFinal() will return an
135 error code if padding is enabled and the final block is not correctly
136 formatted. The parameters and restrictions are identical to the encryption
137 operations except that if padding is enabled the decrypted data buffer B<out>
138 passed to EVP_DecryptUpdate() should have sufficient room for
139 (B<inl> + cipher_block_size) bytes unless the cipher block size is 1 in
140 which case B<inl> bytes is sufficient.
141
142 EVP_CipherInit_ex(), EVP_CipherUpdate() and EVP_CipherFinal_ex() are
143 functions that can be used for decryption or encryption. The operation
144 performed depends on the value of the B<enc> parameter. It should be set
145 to 1 for encryption, 0 for decryption and -1 to leave the value unchanged
146 (the actual value of 'enc' being supplied in a previous call).
147
148 EVP_CIPHER_CTX_cleanup() clears all information from a cipher context
149 and free up any allocated memory associate with it. It should be called
150 after all operations using a cipher are complete so sensitive information
151 does not remain in memory.
152
153 EVP_EncryptInit(), EVP_DecryptInit() and EVP_CipherInit() behave in a
154 similar way to EVP_EncryptInit_ex(), EVP_DecryptInit_ex and
155 EVP_CipherInit_ex() except the B<ctx> paramter does not need to be
156 initialized and they always use the default cipher implementation.
157
158 EVP_EncryptFinal(), EVP_DecryptFinal() and EVP_CipherFinal() behave in a
159 similar way to EVP_EncryptFinal_ex(), EVP_DecryptFinal_ex() and
160 EVP_CipherFinal_ex() except B<ctx> is automatically cleaned up 
161 after the call.
162
163 EVP_get_cipherbyname(), EVP_get_cipherbynid() and EVP_get_cipherbyobj()
164 return an EVP_CIPHER structure when passed a cipher name, a NID or an
165 ASN1_OBJECT structure.
166
167 EVP_CIPHER_nid() and EVP_CIPHER_CTX_nid() return the NID of a cipher when
168 passed an B<EVP_CIPHER> or B<EVP_CIPHER_CTX> structure.  The actual NID
169 value is an internal value which may not have a corresponding OBJECT
170 IDENTIFIER.
171
172 EVP_CIPHER_CTX_set_padding() enables or disables padding. By default
173 encryption operations are padded using standard block padding and the
174 padding is checked and removed when decrypting. If the B<pad> parameter
175 is zero then no padding is performed, the total amount of data encrypted
176 or decrypted must then be a multiple of the block size or an error will
177 occur.
178
179 EVP_CIPHER_key_length() and EVP_CIPHER_CTX_key_length() return the key
180 length of a cipher when passed an B<EVP_CIPHER> or B<EVP_CIPHER_CTX>
181 structure. The constant B<EVP_MAX_KEY_LENGTH> is the maximum key length
182 for all ciphers. Note: although EVP_CIPHER_key_length() is fixed for a
183 given cipher, the value of EVP_CIPHER_CTX_key_length() may be different
184 for variable key length ciphers.
185
186 EVP_CIPHER_CTX_set_key_length() sets the key length of the cipher ctx.
187 If the cipher is a fixed length cipher then attempting to set the key
188 length to any value other than the fixed value is an error.
189
190 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
191 length of a cipher when passed an B<EVP_CIPHER> or B<EVP_CIPHER_CTX>.
192 It will return zero if the cipher does not use an IV.  The constant
193 B<EVP_MAX_IV_LENGTH> is the maximum IV length for all ciphers.
194
195 EVP_CIPHER_block_size() and EVP_CIPHER_CTX_block_size() return the block
196 size of a cipher when passed an B<EVP_CIPHER> or B<EVP_CIPHER_CTX>
197 structure. The constant B<EVP_MAX_IV_LENGTH> is also the maximum block
198 length for all ciphers.
199
200 EVP_CIPHER_type() and EVP_CIPHER_CTX_type() return the type of the passed
201 cipher or context. This "type" is the actual NID of the cipher OBJECT
202 IDENTIFIER as such it ignores the cipher parameters and 40 bit RC2 and
203 128 bit RC2 have the same NID. If the cipher does not have an object
204 identifier or does not have ASN1 support this function will return
205 B<NID_undef>.
206
207 EVP_CIPHER_CTX_cipher() returns the B<EVP_CIPHER> structure when passed
208 an B<EVP_CIPHER_CTX> structure.
209
210 EVP_CIPHER_mode() and EVP_CIPHER_CTX_mode() return the block cipher mode:
211 EVP_CIPH_ECB_MODE, EVP_CIPH_CBC_MODE, EVP_CIPH_CFB_MODE or
212 EVP_CIPH_OFB_MODE. If the cipher is a stream cipher then
213 EVP_CIPH_STREAM_CIPHER is returned.
214
215 EVP_CIPHER_param_to_asn1() sets the AlgorithmIdentifier "parameter" based
216 on the passed cipher. This will typically include any parameters and an
217 IV. The cipher IV (if any) must be set when this call is made. This call
218 should be made before the cipher is actually "used" (before any
219 EVP_EncryptUpdate(), EVP_DecryptUpdate() calls for example). This function
220 may fail if the cipher does not have any ASN1 support.
221
222 EVP_CIPHER_asn1_to_param() sets the cipher parameters based on an ASN1
223 AlgorithmIdentifier "parameter". The precise effect depends on the cipher
224 In the case of RC2, for example, it will set the IV and effective key length.
225 This function should be called after the base cipher type is set but before
226 the key is set. For example EVP_CipherInit() will be called with the IV and
227 key set to NULL, EVP_CIPHER_asn1_to_param() will be called and finally
228 EVP_CipherInit() again with all parameters except the key set to NULL. It is
229 possible for this function to fail if the cipher does not have any ASN1 support
230 or the parameters cannot be set (for example the RC2 effective key length
231 is not supported.
232
233 EVP_CIPHER_CTX_ctrl() allows various cipher specific parameters to be determined
234 and set.
235
236 =head1 RETURN VALUES
237
238 EVP_EncryptInit_ex(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex()
239 return 1 for success and 0 for failure.
240
241 EVP_DecryptInit_ex() and EVP_DecryptUpdate() return 1 for success and 0 for failure.
242 EVP_DecryptFinal_ex() returns 0 if the decrypt failed or 1 for success.
243
244 EVP_CipherInit_ex() and EVP_CipherUpdate() return 1 for success and 0 for failure.
245 EVP_CipherFinal_ex() returns 0 for a decryption failure or 1 for success.
246
247 EVP_CIPHER_CTX_cleanup() returns 1 for success and 0 for failure.
248
249 EVP_get_cipherbyname(), EVP_get_cipherbynid() and EVP_get_cipherbyobj()
250 return an B<EVP_CIPHER> structure or NULL on error.
251
252 EVP_CIPHER_nid() and EVP_CIPHER_CTX_nid() return a NID.
253
254 EVP_CIPHER_block_size() and EVP_CIPHER_CTX_block_size() return the block
255 size.
256
257 EVP_CIPHER_key_length() and EVP_CIPHER_CTX_key_length() return the key
258 length.
259
260 EVP_CIPHER_CTX_set_padding() always returns 1.
261
262 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
263 length or zero if the cipher does not use an IV.
264
265 EVP_CIPHER_type() and EVP_CIPHER_CTX_type() return the NID of the cipher's
266 OBJECT IDENTIFIER or NID_undef if it has no defined OBJECT IDENTIFIER.
267
268 EVP_CIPHER_CTX_cipher() returns an B<EVP_CIPHER> structure.
269
270 EVP_CIPHER_param_to_asn1() and EVP_CIPHER_asn1_to_param() return 1 for 
271 success or zero for failure.
272
273 =head1 CIPHER LISTING
274
275 All algorithms have a fixed key length unless otherwise stated.
276
277 =over 4
278
279 =item EVP_enc_null()
280
281 Null cipher: does nothing.
282
283 =item EVP_des_cbc(void), EVP_des_ecb(void), EVP_des_cfb(void), EVP_des_ofb(void)
284
285 DES in CBC, ECB, CFB and OFB modes respectively. 
286
287 =item EVP_des_ede_cbc(void), EVP_des_ede(), EVP_des_ede_ofb(void),  EVP_des_ede_cfb(void)
288
289 Two key triple DES in CBC, ECB, CFB and OFB modes respectively.
290
291 =item EVP_des_ede3_cbc(void), EVP_des_ede3(), EVP_des_ede3_ofb(void),  EVP_des_ede3_cfb(void)
292
293 Three key triple DES in CBC, ECB, CFB and OFB modes respectively.
294
295 =item EVP_desx_cbc(void)
296
297 DESX algorithm in CBC mode.
298
299 =item EVP_rc4(void)
300
301 RC4 stream cipher. This is a variable key length cipher with default key length 128 bits.
302
303 =item EVP_rc4_40(void)
304
305 RC4 stream cipher with 40 bit key length. This is obsolete and new code should use EVP_rc4()
306 and the EVP_CIPHER_CTX_set_key_length() function.
307
308 =item EVP_idea_cbc() EVP_idea_ecb(void), EVP_idea_cfb(void), EVP_idea_ofb(void), EVP_idea_cbc(void)
309
310 IDEA encryption algorithm in CBC, ECB, CFB and OFB modes respectively.
311
312 =item EVP_rc2_cbc(void), EVP_rc2_ecb(void), EVP_rc2_cfb(void), EVP_rc2_ofb(void)
313
314 RC2 encryption algorithm in CBC, ECB, CFB and OFB modes respectively. This is a variable key
315 length cipher with an additional parameter called "effective key bits" or "effective key length".
316 By default both are set to 128 bits.
317
318 =item EVP_rc2_40_cbc(void), EVP_rc2_64_cbc(void)
319
320 RC2 algorithm in CBC mode with a default key length and effective key length of 40 and 64 bits.
321 These are obsolete and new code should use EVP_rc2_cbc(), EVP_CIPHER_CTX_set_key_length() and
322 EVP_CIPHER_CTX_ctrl() to set the key length and effective key length.
323
324 =item EVP_bf_cbc(void), EVP_bf_ecb(void), EVP_bf_cfb(void), EVP_bf_ofb(void);
325
326 Blowfish encryption algorithm in CBC, ECB, CFB and OFB modes respectively. This is a variable key
327 length cipher.
328
329 =item EVP_cast5_cbc(void), EVP_cast5_ecb(void), EVP_cast5_cfb(void), EVP_cast5_ofb(void)
330
331 CAST encryption algorithm in CBC, ECB, CFB and OFB modes respectively. This is a variable key
332 length cipher.
333
334 =item EVP_rc5_32_12_16_cbc(void), EVP_rc5_32_12_16_ecb(void), EVP_rc5_32_12_16_cfb(void), EVP_rc5_32_12_16_ofb(void)
335
336 RC5 encryption algorithm in CBC, ECB, CFB and OFB modes respectively. This is a variable key length
337 cipher with an additional "number of rounds" parameter. By default the key length is set to 128
338 bits and 12 rounds.
339
340 =item EVP_aes_128_gcm(void), EVP_aes_192_gcm(void), EVP_aes_256_gcm(void)
341
342 AES Galois Counter Mode (GCM) for 128, 192 and 256 bit keys respectively.
343 These ciphers require additional control operations to function correctly: see
344 L<GCM mode> section below for details.
345
346 =item EVP_aes_128_ccm(void), EVP_aes_192_ccm(void), EVP_aes_256_ccm(void)
347
348 AES Counter with CBC-MAC Mode (CCM) for 128, 192 and 256 bit keys respectively.
349 These ciphers require additional control operations to function correctly: see
350 CCM mode section below for details.
351
352 =back
353
354 =head1 GCM Mode
355
356 For GCM mode ciphers the behaviour of the EVP interface is subtly altered and
357 several GCM specific ctrl operations are supported.
358
359 To specify any additional authenticated data (AAD) a call to EVP_CipherUpdate(),
360 EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made with the output 
361 parameter B<out> set to B<NULL>.
362
363 When decrypting the return value of EVP_DecryptFinal() or EVP_CipherFinal()
364 indicates if the operation was successful. If it does not indicate success
365 the authentication operation has failed and any output data B<MUST NOT>
366 be used as it is corrupted.
367
368 The following ctrls are supported in GCM mode:
369
370  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, ivlen, NULL);
371
372 Sets the GCM IV length: this call can only be made before specifying an IV. If
373 not called a default IV length is used (96 bits for AES).
374  
375  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_GET_TAG, taglen, tag);
376
377 Writes B<taglen> bytes of the tag value to the buffer indicated by B<tag>.
378 This call can only be made when encrypting data and B<after> all data has been
379 processed (e.g. after an EVP_EncryptFinal() call).
380
381  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_TAG, taglen, tag);
382
383 Sets the expected tag to B<taglen> bytes from B<tag>. This call is only legal
384 when decrypting data and must be made B<before> any data is processed (e.g.
385 before any EVP_DecryptUpdate() call). 
386
387 See L<EXAMPLES> below for an example of the use of GCM mode.
388
389 =head1 CCM Mode
390
391 The behaviour of CCM mode ciphers is similar to CCM mode but with a few
392 additional requirements and different ctrl values.
393
394 Like GCM mode any additional authenticated data (AAD) is passed by calling
395 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output 
396 parameter B<out> set to B<NULL>. Additionally the total plaintext or ciphertext
397 length B<MUST> be passed to EVP_CipherUpdate(), EVP_EncryptUpdate() or
398 EVP_DecryptUpdate() with the output and input parameters (B<in> and B<out>) 
399 set to B<NULL> and the length passed in the B<inl> parameter.
400
401 The following ctrls are supported in CCM mode:
402  
403  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_TAG, taglen, tag);
404
405 This call is made to set the expected B<CCM> tag value when decrypting or
406 the length of the tag (with the B<tag> parameter set to NULL) when encrypting.
407 The tag length is often referred to as B<M>. If not set a default value is
408 used (12 for AES).
409
410  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_L, ivlen, NULL);
411
412 Sets the CCM B<L> value. If not set a default is used (8 for AES).
413
414  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_IVLEN, ivlen, NULL);
415
416 Sets the CCM nonce (IV) length: this call can only be made before specifying
417 an nonce value. The nonce length is given by B<15 - L> so it is 7 by default
418 for AES.
419
420
421
422 =head1 NOTES
423
424 Where possible the B<EVP> interface to symmetric ciphers should be used in
425 preference to the low level interfaces. This is because the code then becomes
426 transparent to the cipher used and much more flexible.
427
428 PKCS padding works by adding B<n> padding bytes of value B<n> to make the total 
429 length of the encrypted data a multiple of the block size. Padding is always
430 added so if the data is already a multiple of the block size B<n> will equal
431 the block size. For example if the block size is 8 and 11 bytes are to be
432 encrypted then 5 padding bytes of value 5 will be added.
433
434 When decrypting the final block is checked to see if it has the correct form.
435
436 Although the decryption operation can produce an error if padding is enabled,
437 it is not a strong test that the input data or key is correct. A random block
438 has better than 1 in 256 chance of being of the correct format and problems with
439 the input data earlier on will not produce a final decrypt error.
440
441 If padding is disabled then the decryption operation will always succeed if
442 the total amount of data decrypted is a multiple of the block size.
443
444 The functions EVP_EncryptInit(), EVP_EncryptFinal(), EVP_DecryptInit(),
445 EVP_CipherInit() and EVP_CipherFinal() are obsolete but are retained for
446 compatibility with existing code. New code should use EVP_EncryptInit_ex(),
447 EVP_EncryptFinal_ex(), EVP_DecryptInit_ex(), EVP_DecryptFinal_ex(),
448 EVP_CipherInit_ex() and EVP_CipherFinal_ex() because they can reuse an
449 existing context without allocating and freeing it up on each call.
450
451 =head1 BUGS
452
453 For RC5 the number of rounds can currently only be set to 8, 12 or 16. This is
454 a limitation of the current RC5 code rather than the EVP interface.
455
456 EVP_MAX_KEY_LENGTH and EVP_MAX_IV_LENGTH only refer to the internal ciphers with
457 default key lengths. If custom ciphers exceed these values the results are
458 unpredictable. This is because it has become standard practice to define a 
459 generic key as a fixed unsigned char array containing EVP_MAX_KEY_LENGTH bytes.
460
461 The ASN1 code is incomplete (and sometimes inaccurate) it has only been tested
462 for certain common S/MIME ciphers (RC2, DES, triple DES) in CBC mode.
463
464 =head1 EXAMPLES
465
466 Get the number of rounds used in RC5:
467
468  int nrounds;
469  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GET_RC5_ROUNDS, 0, &nrounds);
470
471 Get the RC2 effective key length:
472
473  int key_bits;
474  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GET_RC2_KEY_BITS, 0, &key_bits);
475
476 Set the number of rounds used in RC5:
477
478  int nrounds;
479  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_RC5_ROUNDS, nrounds, NULL);
480
481 Set the effective key length used in RC2:
482
483  int key_bits;
484  EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_RC2_KEY_BITS, key_bits, NULL);
485
486 Encrypt a string using blowfish:
487
488  int do_crypt(char *outfile)
489         {
490         unsigned char outbuf[1024];
491         int outlen, tmplen;
492         /* Bogus key and IV: we'd normally set these from
493          * another source.
494          */
495         unsigned char key[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
496         unsigned char iv[] = {1,2,3,4,5,6,7,8};
497         char intext[] = "Some Crypto Text";
498         EVP_CIPHER_CTX ctx;
499         FILE *out;
500         EVP_CIPHER_CTX_init(&ctx);
501         EVP_EncryptInit_ex(&ctx, EVP_bf_cbc(), NULL, key, iv);
502
503         if(!EVP_EncryptUpdate(&ctx, outbuf, &outlen, intext, strlen(intext)))
504                 {
505                 /* Error */
506                 return 0;
507                 }
508         /* Buffer passed to EVP_EncryptFinal() must be after data just
509          * encrypted to avoid overwriting it.
510          */
511         if(!EVP_EncryptFinal_ex(&ctx, outbuf + outlen, &tmplen))
512                 {
513                 /* Error */
514                 return 0;
515                 }
516         outlen += tmplen;
517         EVP_CIPHER_CTX_cleanup(&ctx);
518         /* Need binary mode for fopen because encrypted data is
519          * binary data. Also cannot use strlen() on it because
520          * it wont be null terminated and may contain embedded
521          * nulls.
522          */
523         out = fopen(outfile, "wb");
524         fwrite(outbuf, 1, outlen, out);
525         fclose(out);
526         return 1;
527         }
528
529 The ciphertext from the above example can be decrypted using the B<openssl>
530 utility with the command line:
531  
532  S<openssl bf -in cipher.bin -K 000102030405060708090A0B0C0D0E0F -iv 0102030405060708 -d>
533
534 General encryption, decryption function example using FILE I/O and RC2 with an
535 80 bit key:
536
537  int do_crypt(FILE *in, FILE *out, int do_encrypt)
538         {
539         /* Allow enough space in output buffer for additional block */
540         inbuf[1024], outbuf[1024 + EVP_MAX_BLOCK_LENGTH];
541         int inlen, outlen;
542         /* Bogus key and IV: we'd normally set these from
543          * another source.
544          */
545         unsigned char key[] = "0123456789";
546         unsigned char iv[] = "12345678";
547         /* Don't set key or IV because we will modify the parameters */
548         EVP_CIPHER_CTX_init(&ctx);
549         EVP_CipherInit_ex(&ctx, EVP_rc2(), NULL, NULL, NULL, do_encrypt);
550         EVP_CIPHER_CTX_set_key_length(&ctx, 10);
551         /* We finished modifying parameters so now we can set key and IV */
552         EVP_CipherInit_ex(&ctx, NULL, NULL, key, iv, do_encrypt);
553
554         for(;;) 
555                 {
556                 inlen = fread(inbuf, 1, 1024, in);
557                 if(inlen <= 0) break;
558                 if(!EVP_CipherUpdate(&ctx, outbuf, &outlen, inbuf, inlen))
559                         {
560                         /* Error */
561                         EVP_CIPHER_CTX_cleanup(&ctx);
562                         return 0;
563                         }
564                 fwrite(outbuf, 1, outlen, out);
565                 }
566         if(!EVP_CipherFinal_ex(&ctx, outbuf, &outlen))
567                 {
568                 /* Error */
569                 EVP_CIPHER_CTX_cleanup(&ctx);
570                 return 0;
571                 }
572         fwrite(outbuf, 1, outlen, out);
573
574         EVP_CIPHER_CTX_cleanup(&ctx);
575         return 1;
576         }
577
578
579 =head1 SEE ALSO
580
581 L<evp(3)|evp(3)>
582
583 =head1 HISTORY
584
585 EVP_CIPHER_CTX_init(), EVP_EncryptInit_ex(), EVP_EncryptFinal_ex(),
586 EVP_DecryptInit_ex(), EVP_DecryptFinal_ex(), EVP_CipherInit_ex(),
587 EVP_CipherFinal_ex() and EVP_CIPHER_CTX_set_padding() appeared in
588 OpenSSL 0.9.7.
589
590 =cut