| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-09-05 15:35:49 +08:00
										 |  |  |  * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:05:25 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:20:24 +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:56:39 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 00:15:26 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CAST low level APIs are deprecated for public use, but still ok for | 
					
						
							|  |  |  |  * internal use. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include "internal/deprecated.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-27 09:14:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  | #include <openssl/opensslconf.h> /* To see if OPENSSL_NO_CAST is defined */
 | 
					
						
							| 
									
										
										
										
											2017-08-22 20:35:43 +08:00
										 |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2002-11-29 02:54:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-13 09:40:35 +08:00
										 |  |  | #ifndef OPENSSL_NO_CAST
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | # include <openssl/cast.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char k[16] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 
					
						
							|  |  |  |     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-14 02:32:54 +08:00
										 |  |  | static unsigned char in[8] = { | 
					
						
							|  |  |  |     0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static int k_len[3] = { 16, 10, 5 }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char c[3][8] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     {0x23, 0x8B, 0x4F, 0xE5, 0x84, 0x7E, 0x44, 0xB2}, | 
					
						
							|  |  |  |     {0xEB, 0x6A, 0x71, 0x1A, 0x2C, 0x02, 0x27, 0x1B}, | 
					
						
							|  |  |  |     {0x7A, 0xC8, 0x16, 0xD1, 0x6E, 0x9B, 0x30, 0x2E}, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char in_a[16] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 
					
						
							|  |  |  |     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char in_b[16] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, | 
					
						
							|  |  |  |     0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9A | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char c_a[16] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     0xEE, 0xA9, 0xD0, 0xA2, 0x49, 0xFD, 0x3B, 0xA6, | 
					
						
							|  |  |  |     0xB3, 0x43, 0x6F, 0xB8, 0x9D, 0x6D, 0xCA, 0x92 | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-10-26 03:36:01 +08:00
										 |  |  | static unsigned char c_b[16] = { | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  |     0xB2, 0xC9, 0x5E, 0xB0, 0x0C, 0x31, 0xAD, 0x71, | 
					
						
							|  |  |  |     0x80, 0xAC, 0x05, 0xB8, 0xE8, 0x3D, 0x69, 0x6E | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-13 09:40:35 +08:00
										 |  |  | static int cast_test_vector(int z) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int testresult = 1; | 
					
						
							|  |  |  |     CAST_KEY key; | 
					
						
							|  |  |  |     unsigned char out[80]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CAST_set_key(&key, k_len[z], k); | 
					
						
							|  |  |  |     CAST_ecb_encrypt(in, out, &key, CAST_ENCRYPT); | 
					
						
							|  |  |  |     if (!TEST_mem_eq(out, sizeof(c[z]), c[z], sizeof(c[z]))) { | 
					
						
							|  |  |  |         TEST_info("CAST_ENCRYPT iteration %d failed (len=%d)", z, k_len[z]); | 
					
						
							|  |  |  |         testresult = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CAST_ecb_encrypt(out, out, &key, CAST_DECRYPT); | 
					
						
							|  |  |  |     if (!TEST_mem_eq(out, sizeof(in), in, sizeof(in))) { | 
					
						
							|  |  |  |         TEST_info("CAST_DECRYPT iteration %d failed (len=%d)", z, k_len[z]); | 
					
						
							|  |  |  |         testresult = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return testresult; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int cast_test_iterations(void) | 
					
						
							| 
									
										
										
										
											1999-01-18 00:26:24 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     long l; | 
					
						
							| 
									
										
										
										
											2017-04-13 09:40:35 +08:00
										 |  |  |     int testresult = 1; | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  |     CAST_KEY key, key_b; | 
					
						
							|  |  |  |     unsigned char out_a[16], out_b[16]; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  |     memcpy(out_a, in_a, sizeof(in_a)); | 
					
						
							|  |  |  |     memcpy(out_b, in_b, sizeof(in_b)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (l = 0; l < 1000000L; l++) { | 
					
						
							|  |  |  |         CAST_set_key(&key_b, 16, out_b); | 
					
						
							|  |  |  |         CAST_ecb_encrypt(&(out_a[0]), &(out_a[0]), &key_b, CAST_ENCRYPT); | 
					
						
							|  |  |  |         CAST_ecb_encrypt(&(out_a[8]), &(out_a[8]), &key_b, CAST_ENCRYPT); | 
					
						
							|  |  |  |         CAST_set_key(&key, 16, out_a); | 
					
						
							|  |  |  |         CAST_ecb_encrypt(&(out_b[0]), &(out_b[0]), &key, CAST_ENCRYPT); | 
					
						
							|  |  |  |         CAST_ecb_encrypt(&(out_b[8]), &(out_b[8]), &key, CAST_ENCRYPT); | 
					
						
							| 
									
										
										
										
											1999-01-18 00:26:24 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  |     if (!TEST_mem_eq(out_a, sizeof(c_a), c_a, sizeof(c_a)) | 
					
						
							|  |  |  |             || !TEST_mem_eq(out_b, sizeof(c_b), c_b, sizeof(c_b))) | 
					
						
							|  |  |  |         testresult = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return testresult; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1999-04-27 09:14:46 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-04-13 09:40:35 +08:00
										 |  |  | #ifndef OPENSSL_NO_CAST
 | 
					
						
							|  |  |  |     ADD_ALL_TESTS(cast_test_vector, OSSL_NELEM(k_len)); | 
					
						
							|  |  |  |     ADD_TEST(cast_test_iterations); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2017-04-12 04:16:33 +08:00
										 |  |  | } |