Rename EVP_CIPHER_CTX_cipher_data to EVP_CIPHER_CTX_get_cipher_data
[openssl.git] / crypto / evp / evp_lib.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/evp.h>
61 #include <openssl/objects.h>
62 #include "internal/evp_int.h"
63 #include "evp_locl.h"
64
65 int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
66 {
67     int ret;
68
69     if (c->cipher->set_asn1_parameters != NULL)
70         ret = c->cipher->set_asn1_parameters(c, type);
71     else if (c->cipher->flags & EVP_CIPH_FLAG_DEFAULT_ASN1) {
72         switch (EVP_CIPHER_CTX_mode(c)) {
73         case EVP_CIPH_WRAP_MODE:
74             if (EVP_CIPHER_CTX_nid(c) == NID_id_smime_alg_CMS3DESwrap)
75                 ASN1_TYPE_set(type, V_ASN1_NULL, NULL);
76             ret = 1;
77             break;
78
79         case EVP_CIPH_GCM_MODE:
80         case EVP_CIPH_CCM_MODE:
81         case EVP_CIPH_XTS_MODE:
82         case EVP_CIPH_OCB_MODE:
83             ret = -1;
84             break;
85
86         default:
87             ret = EVP_CIPHER_set_asn1_iv(c, type);
88         }
89     } else
90         ret = -1;
91     return (ret);
92 }
93
94 int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
95 {
96     int ret;
97
98     if (c->cipher->get_asn1_parameters != NULL)
99         ret = c->cipher->get_asn1_parameters(c, type);
100     else if (c->cipher->flags & EVP_CIPH_FLAG_DEFAULT_ASN1) {
101         switch (EVP_CIPHER_CTX_mode(c)) {
102
103         case EVP_CIPH_WRAP_MODE:
104             ret = 1;
105             break;
106
107         case EVP_CIPH_GCM_MODE:
108         case EVP_CIPH_CCM_MODE:
109         case EVP_CIPH_XTS_MODE:
110         case EVP_CIPH_OCB_MODE:
111             ret = -1;
112             break;
113
114         default:
115             ret = EVP_CIPHER_get_asn1_iv(c, type);
116             break;
117         }
118     } else
119         ret = -1;
120     return (ret);
121 }
122
123 int EVP_CIPHER_get_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
124 {
125     int i = 0;
126     unsigned int l;
127
128     if (type != NULL) {
129         l = EVP_CIPHER_CTX_iv_length(c);
130         OPENSSL_assert(l <= sizeof(c->iv));
131         i = ASN1_TYPE_get_octetstring(type, c->oiv, l);
132         if (i != (int)l)
133             return (-1);
134         else if (i > 0)
135             memcpy(c->iv, c->oiv, l);
136     }
137     return (i);
138 }
139
140 int EVP_CIPHER_set_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
141 {
142     int i = 0;
143     unsigned int j;
144
145     if (type != NULL) {
146         j = EVP_CIPHER_CTX_iv_length(c);
147         OPENSSL_assert(j <= sizeof(c->iv));
148         i = ASN1_TYPE_set_octetstring(type, c->oiv, j);
149     }
150     return (i);
151 }
152
153 /* Convert the various cipher NIDs and dummies to a proper OID NID */
154 int EVP_CIPHER_type(const EVP_CIPHER *ctx)
155 {
156     int nid;
157     ASN1_OBJECT *otmp;
158     nid = EVP_CIPHER_nid(ctx);
159
160     switch (nid) {
161
162     case NID_rc2_cbc:
163     case NID_rc2_64_cbc:
164     case NID_rc2_40_cbc:
165
166         return NID_rc2_cbc;
167
168     case NID_rc4:
169     case NID_rc4_40:
170
171         return NID_rc4;
172
173     case NID_aes_128_cfb128:
174     case NID_aes_128_cfb8:
175     case NID_aes_128_cfb1:
176
177         return NID_aes_128_cfb128;
178
179     case NID_aes_192_cfb128:
180     case NID_aes_192_cfb8:
181     case NID_aes_192_cfb1:
182
183         return NID_aes_192_cfb128;
184
185     case NID_aes_256_cfb128:
186     case NID_aes_256_cfb8:
187     case NID_aes_256_cfb1:
188
189         return NID_aes_256_cfb128;
190
191     case NID_des_cfb64:
192     case NID_des_cfb8:
193     case NID_des_cfb1:
194
195         return NID_des_cfb64;
196
197     case NID_des_ede3_cfb64:
198     case NID_des_ede3_cfb8:
199     case NID_des_ede3_cfb1:
200
201         return NID_des_cfb64;
202
203     default:
204         /* Check it has an OID and it is valid */
205         otmp = OBJ_nid2obj(nid);
206         if (OBJ_get0_data(otmp) == NULL)
207             nid = NID_undef;
208         ASN1_OBJECT_free(otmp);
209         return nid;
210     }
211 }
212
213 int EVP_CIPHER_block_size(const EVP_CIPHER *e)
214 {
215     return e->block_size;
216 }
217
218 int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx)
219 {
220     return ctx->cipher->block_size;
221 }
222
223 int EVP_CIPHER_impl_ctx_size(const EVP_CIPHER *e)
224 {
225     return e->ctx_size;
226 }
227
228 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
229                const unsigned char *in, unsigned int inl)
230 {
231     return ctx->cipher->do_cipher(ctx, out, in, inl);
232 }
233
234 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx)
235 {
236     return ctx->cipher;
237 }
238
239 int EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx)
240 {
241     return ctx->encrypt;
242 }
243
244 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher)
245 {
246     return cipher->flags;
247 }
248
249 void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx)
250 {
251     return ctx->app_data;
252 }
253
254 void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data)
255 {
256     ctx->app_data = data;
257 }
258
259 void *EVP_CIPHER_CTX_get_cipher_data(const EVP_CIPHER_CTX *ctx)
260 {
261     return ctx->cipher_data;
262 }
263
264 void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data)
265 {
266     void *old_cipher_data;
267
268     old_cipher_data = ctx->cipher_data;
269     ctx->cipher_data = cipher_data;
270
271     return old_cipher_data;
272 }
273
274 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher)
275 {
276     return cipher->iv_len;
277 }
278
279 int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx)
280 {
281     return ctx->cipher->iv_len;
282 }
283
284 const unsigned char *EVP_CIPHER_CTX_original_iv(const EVP_CIPHER_CTX *ctx)
285 {
286     return ctx->oiv;
287 }
288
289 const unsigned char *EVP_CIPHER_CTX_iv(const EVP_CIPHER_CTX *ctx)
290 {
291     return ctx->iv;
292 }
293
294 unsigned char *EVP_CIPHER_CTX_iv_noconst(EVP_CIPHER_CTX *ctx)
295 {
296     return ctx->iv;
297 }
298
299 unsigned char *EVP_CIPHER_CTX_buf_noconst(EVP_CIPHER_CTX *ctx)
300 {
301     return ctx->buf;
302 }
303
304 int EVP_CIPHER_CTX_num(const EVP_CIPHER_CTX *ctx)
305 {
306     return ctx->num;
307 }
308
309 void EVP_CIPHER_CTX_set_num(EVP_CIPHER_CTX *ctx, int num)
310 {
311     ctx->num = num;
312 }
313
314 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher)
315 {
316     return cipher->key_len;
317 }
318
319 int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx)
320 {
321     return ctx->key_len;
322 }
323
324 int EVP_CIPHER_nid(const EVP_CIPHER *cipher)
325 {
326     return cipher->nid;
327 }
328
329 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx)
330 {
331     return ctx->cipher->nid;
332 }
333
334 int EVP_MD_block_size(const EVP_MD *md)
335 {
336     return md->block_size;
337 }
338
339 int EVP_MD_type(const EVP_MD *md)
340 {
341     return md->type;
342 }
343
344 int EVP_MD_pkey_type(const EVP_MD *md)
345 {
346     return md->pkey_type;
347 }
348
349 int EVP_MD_size(const EVP_MD *md)
350 {
351     if (!md) {
352         EVPerr(EVP_F_EVP_MD_SIZE, EVP_R_MESSAGE_DIGEST_IS_NULL);
353         return -1;
354     }
355     return md->md_size;
356 }
357
358 unsigned long EVP_MD_flags(const EVP_MD *md)
359 {
360     return md->flags;
361 }
362
363 EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type)
364 {
365     EVP_MD *md = OPENSSL_zalloc(sizeof(*md));
366
367     if (md != NULL) {
368         md->type = md_type;
369         md->pkey_type = pkey_type;
370     }
371     return md;
372 }
373 EVP_MD *EVP_MD_meth_dup(const EVP_MD *md)
374 {
375     EVP_MD *to = EVP_MD_meth_new(md->type, md->pkey_type);
376
377     if (to != NULL)
378         memcpy(to, md, sizeof(*to));
379     return to;
380 }
381 void EVP_MD_meth_free(EVP_MD *md)
382 {
383     OPENSSL_free(md);
384 }
385 int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize)
386 {
387     md->block_size = blocksize;
388     return 1;
389 }
390 int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize)
391 {
392     md->md_size = resultsize;
393     return 1;
394 }
395 int EVP_MD_meth_set_app_datasize(EVP_MD *md, int datasize)
396 {
397     md->ctx_size = datasize;
398     return 1;
399 }
400 int EVP_MD_meth_set_flags(EVP_MD *md, unsigned long flags)
401 {
402     md->flags = flags;
403     return 1;
404 }
405 int EVP_MD_meth_set_init(EVP_MD *md, int (*init)(EVP_MD_CTX *ctx))
406 {
407     md->init = init;
408     return 1;
409 }
410 int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx,
411                                                      const void *data,
412                                                      size_t count))
413 {
414     md->update = update;
415     return 1;
416 }
417 int EVP_MD_meth_set_final(EVP_MD *md, int (*final)(EVP_MD_CTX *ctx,
418                                                    unsigned char *md))
419 {
420     md->final = final;
421     return 1;
422 }
423 int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
424                                                  const EVP_MD_CTX *from))
425 {
426     md->copy = copy;
427     return 1;
428 }
429 int EVP_MD_meth_set_cleanup(EVP_MD *md, int (*cleanup)(EVP_MD_CTX *ctx))
430 {
431     md->cleanup = cleanup;
432     return 1;
433 }
434 int EVP_MD_meth_set_ctrl(EVP_MD *md, int (*ctrl)(EVP_MD_CTX *ctx, int cmd,
435                                                  int p1, void *p2))
436 {
437     md->md_ctrl = ctrl;
438     return 1;
439 }
440
441 int EVP_MD_meth_get_input_blocksize(const EVP_MD *md)
442 {
443     return md->block_size;
444 }
445 int EVP_MD_meth_get_result_size(const EVP_MD *md)
446 {
447     return md->md_size;
448 }
449 int EVP_MD_meth_get_app_datasize(const EVP_MD *md)
450 {
451     return md->ctx_size;
452 }
453 unsigned long EVP_MD_meth_get_flags(const EVP_MD *md)
454 {
455     return md->block_size;
456 }
457 int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx)
458 {
459     return md->init;
460 }
461 int (*EVP_MD_meth_get_update(const EVP_MD *md))(EVP_MD_CTX *ctx,
462                                                 const void *data,
463                                                 size_t count)
464 {
465     return md->update;
466 }
467 int (*EVP_MD_meth_get_final(const EVP_MD *md))(EVP_MD_CTX *ctx,
468                                                unsigned char *md)
469 {
470     return md->final;
471 }
472 int (*EVP_MD_meth_get_copy(const EVP_MD *md))(EVP_MD_CTX *to,
473                                               const EVP_MD_CTX *from)
474 {
475     return md->copy;
476 }
477 int (*EVP_MD_meth_get_cleanup(const EVP_MD *md))(EVP_MD_CTX *ctx)
478 {
479     return md->cleanup;
480 }
481 int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd,
482                                               int p1, void *p2)
483 {
484     return md->md_ctrl;
485 }
486
487 const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx)
488 {
489     if (!ctx)
490         return NULL;
491     return ctx->digest;
492 }
493
494 EVP_PKEY_CTX *EVP_MD_CTX_pkey_ctx(const EVP_MD_CTX *ctx)
495 {
496     return ctx->pctx;
497 }
498
499 void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx)
500 {
501     return ctx->md_data;
502 }
503
504 int (*EVP_MD_CTX_update_fn(EVP_MD_CTX *ctx))(EVP_MD_CTX *ctx,
505                                              const void *data, size_t count)
506 {
507     return ctx->update;
508 }
509
510 void EVP_MD_CTX_set_update_fn(EVP_MD_CTX *ctx,
511                               int (*update) (EVP_MD_CTX *ctx,
512                                              const void *data, size_t count))
513 {
514     ctx->update = update;
515 }
516
517 void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags)
518 {
519     ctx->flags |= flags;
520 }
521
522 void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, int flags)
523 {
524     ctx->flags &= ~flags;
525 }
526
527 int EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, int flags)
528 {
529     return (ctx->flags & flags);
530 }
531
532 void EVP_CIPHER_CTX_set_flags(EVP_CIPHER_CTX *ctx, int flags)
533 {
534     ctx->flags |= flags;
535 }
536
537 void EVP_CIPHER_CTX_clear_flags(EVP_CIPHER_CTX *ctx, int flags)
538 {
539     ctx->flags &= ~flags;
540 }
541
542 int EVP_CIPHER_CTX_test_flags(const EVP_CIPHER_CTX *ctx, int flags)
543 {
544     return (ctx->flags & flags);
545 }