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