| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:40:06 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2003-03-21 07:28:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_IDEA
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | # include <openssl/evp.h>
 | 
					
						
							|  |  |  | # include <openssl/objects.h>
 | 
					
						
							| 
									
										
										
										
											2015-12-19 00:01:28 +08:00
										 |  |  | # include "internal/evp_int.h"
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | # include <openssl/idea.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-18 19:43:54 +08:00
										 |  |  | /* Can't use IMPLEMENT_BLOCK_CIPHER because IDEA_ecb_encrypt is different */ | 
					
						
							| 
									
										
										
										
											2015-12-19 00:01:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     IDEA_KEY_SCHEDULE ks; | 
					
						
							|  |  |  | } EVP_IDEA_KEY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-03 22:13:58 +08:00
										 |  |  | static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          const unsigned char *iv, int enc); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2016-04-18 19:43:54 +08:00
										 |  |  |  * NB IDEA_ecb_encrypt doesn't take an 'encrypt' argument so we treat it as a | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  * special case | 
					
						
							| 
									
										
										
										
											2000-05-30 10:10:57 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-03 22:13:58 +08:00
										 |  |  | static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                            const unsigned char *in, size_t inl) | 
					
						
							| 
									
										
										
										
											2000-05-30 10:10:57 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BLOCK_CIPHER_ecb_loop() | 
					
						
							| 
									
										
										
										
											2016-04-21 02:38:35 +08:00
										 |  |  |         IDEA_ecb_encrypt(in + i, out + i, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2000-05-30 10:10:57 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-21 02:38:35 +08:00
										 |  |  | BLOCK_CIPHER_func_cbc(idea, IDEA, EVP_IDEA_KEY, ks) | 
					
						
							|  |  |  | BLOCK_CIPHER_func_ofb(idea, IDEA, 64, EVP_IDEA_KEY, ks) | 
					
						
							|  |  |  | BLOCK_CIPHER_func_cfb(idea, IDEA, 64, EVP_IDEA_KEY, ks) | 
					
						
							| 
									
										
										
										
											2000-05-30 10:10:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-18 19:43:54 +08:00
										 |  |  | BLOCK_CIPHER_defs(idea, IDEA_KEY_SCHEDULE, NID_idea, 8, 16, 8, 64, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                   0, idea_init_key, NULL, | 
					
						
							|  |  |  |                   EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, NULL) | 
					
						
							| 
									
										
										
										
											2000-05-30 10:10:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-03 22:13:58 +08:00
										 |  |  | static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          const unsigned char *iv, int enc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!enc) { | 
					
						
							|  |  |  |         if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_OFB_MODE) | 
					
						
							|  |  |  |             enc = 1; | 
					
						
							|  |  |  |         else if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_CFB_MODE) | 
					
						
							|  |  |  |             enc = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (enc) | 
					
						
							| 
									
										
										
										
											2016-04-18 19:43:54 +08:00
										 |  |  |         IDEA_set_encrypt_key(key, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else { | 
					
						
							|  |  |  |         IDEA_KEY_SCHEDULE tmp; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-18 19:43:54 +08:00
										 |  |  |         IDEA_set_encrypt_key(key, &tmp); | 
					
						
							|  |  |  |         IDEA_set_decrypt_key(&tmp, &EVP_C_DATA(EVP_IDEA_KEY,ctx)->ks); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         OPENSSL_cleanse((unsigned char *)&tmp, sizeof(IDEA_KEY_SCHEDULE)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |