| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |  * Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:20:24 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * 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
 | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Password based encryption (PBE) table ordering test. | 
					
						
							|  |  |  |  * Attempt to look up all supported algorithms. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  | static int test_pbelu(void) | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-06 07:10:28 +08:00
										 |  |  |     int i, failed = 0; | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  |     int pbe_type, pbe_nid, last_type = -1, last_nid = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |     for (i = 0; EVP_PBE_get(&pbe_type, &pbe_nid, i) != 0; i++) { | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  |         if (!TEST_true(EVP_PBE_find(pbe_type, pbe_nid, NULL, NULL, 0))) { | 
					
						
							| 
									
										
										
										
											2017-07-06 07:10:28 +08:00
										 |  |  |             TEST_note("i=%d, pbe_type=%d, pbe_nid=%d", i, pbe_type, pbe_nid); | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  |             failed = 1; | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!failed) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |     /* Error: print out whole table */ | 
					
						
							|  |  |  |     for (i = 0; EVP_PBE_get(&pbe_type, &pbe_nid, i) != 0; i++) { | 
					
						
							| 
									
										
										
										
											2017-07-06 07:10:28 +08:00
										 |  |  |         failed = pbe_type < last_type | 
					
						
							|  |  |  |                  || (pbe_type == last_type && pbe_nid < last_nid); | 
					
						
							|  |  |  |         TEST_note("PBE type=%d %d (%s): %s\n", pbe_type, pbe_nid, | 
					
						
							|  |  |  |                   OBJ_nid2sn(pbe_nid), failed ? "ERROR" : "OK"); | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  |         last_type = pbe_type; | 
					
						
							|  |  |  |         last_nid = pbe_nid; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-06 07:10:28 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  | int setup_tests(void) | 
					
						
							| 
									
										
										
										
											2017-04-19 02:34:43 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADD_TEST(test_pbelu); | 
					
						
							| 
									
										
										
										
											2017-07-18 09:48:27 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-09-03 22:46:43 +08:00
										 |  |  | } |