ssl/statem: Replace size_t with int and add the checks
[openssl.git] / crypto / evp / e_idea.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * IDEA low level APIs are deprecated for public use, but still ok for internal
12  * use where we're using them to implement the higher level EVP interface, as is
13  * the case here.
14  */
15 #include "internal/deprecated.h"
16
17 #include <stdio.h>
18 #include "internal/cryptlib.h"
19
20 #ifndef OPENSSL_NO_IDEA
21 # include <openssl/evp.h>
22 # include <openssl/objects.h>
23 # include "crypto/evp.h"
24 # include <openssl/idea.h>
25
26 /* Can't use IMPLEMENT_BLOCK_CIPHER because IDEA_ecb_encrypt is different */
27
28 typedef struct {
29     IDEA_KEY_SCHEDULE ks;
30 } EVP_IDEA_KEY;
31
32 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
33                          const unsigned char *iv, int enc);
34
35 /*
36  * NB IDEA_ecb_encrypt doesn't take an 'encrypt' argument so we treat it as a
37  * special case
38  */
39
40 static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
41                            const unsigned char *in, size_t inl)
42 {
43     BLOCK_CIPHER_ecb_loop()
44         IDEA_ecb_encrypt(in + i, out + i, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
45     return 1;
46 }
47
48 BLOCK_CIPHER_func_cbc(idea, IDEA, EVP_IDEA_KEY, ks)
49 BLOCK_CIPHER_func_ofb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
50 BLOCK_CIPHER_func_cfb(idea, IDEA, 64, EVP_IDEA_KEY, ks)
51
52 BLOCK_CIPHER_defs(idea, IDEA_KEY_SCHEDULE, NID_idea, 8, 16, 8, 64,
53                   0, idea_init_key, NULL,
54                   EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, NULL)
55
56 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
57                          const unsigned char *iv, int enc)
58 {
59     if (!enc) {
60         if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_OFB_MODE)
61             enc = 1;
62         else if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_CFB_MODE)
63             enc = 1;
64     }
65     if (enc)
66         IDEA_set_encrypt_key(key, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
67     else {
68         IDEA_KEY_SCHEDULE tmp;
69
70         IDEA_set_encrypt_key(key, &tmp);
71         IDEA_set_decrypt_key(&tmp, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks);
72         OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE));
73     }
74     return 1;
75 }
76
77 #endif