| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-07-16 20:47:04 +08:00
										 |  |  |  * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:39:00 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +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
 | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-14 07:40:29 +08:00
										 |  |  | /* We need to use some engine deprecated APIs */ | 
					
						
							|  |  |  | #define OPENSSL_SUPPRESS_DEPRECATED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "eng_local.h"
 | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static ENGINE_TABLE *cipher_table = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ENGINE_unregister_ciphers(ENGINE *e) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     engine_table_unregister(&cipher_table, e); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-09 01:06:52 +08:00
										 |  |  | static void engine_unregister_all_ciphers(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     engine_table_cleanup(&cipher_table); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ENGINE_register_ciphers(ENGINE *e) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (e->ciphers) { | 
					
						
							|  |  |  |         const int *nids; | 
					
						
							|  |  |  |         int num_nids = e->ciphers(e, NULL, &nids, 0); | 
					
						
							|  |  |  |         if (num_nids > 0) | 
					
						
							|  |  |  |             return engine_table_register(&cipher_table, | 
					
						
							|  |  |  |                                          engine_unregister_all_ciphers, e, | 
					
						
							|  |  |  |                                          nids, num_nids, 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 23:09:50 +08:00
										 |  |  | void ENGINE_register_all_ciphers(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ENGINE *e; | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e)) | 
					
						
							|  |  |  |         ENGINE_register_ciphers(e); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ENGINE_set_default_ciphers(ENGINE *e) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (e->ciphers) { | 
					
						
							|  |  |  |         const int *nids; | 
					
						
							|  |  |  |         int num_nids = e->ciphers(e, NULL, &nids, 0); | 
					
						
							|  |  |  |         if (num_nids > 0) | 
					
						
							|  |  |  |             return engine_table_register(&cipher_table, | 
					
						
							|  |  |  |                                          engine_unregister_all_ciphers, e, | 
					
						
							|  |  |  |                                          nids, num_nids, 1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Exposed API function to get a functional reference from the implementation | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  |  * table (ie. try to get a functional reference from the tabled structural | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  * references) for a given cipher 'nid' | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | ENGINE *ENGINE_get_cipher_engine(int nid) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return engine_table_select(&cipher_table, nid); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Obtains a cipher implementation from an ENGINE functional reference */ | 
					
						
							|  |  |  | const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const EVP_CIPHER *ret; | 
					
						
							|  |  |  |     ENGINE_CIPHERS_PTR fn = ENGINE_get_ciphers(e); | 
					
						
							|  |  |  |     if (!fn || !fn(e, &ret, NULL, nid)) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_CIPHER); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Gets the cipher callback from an ENGINE structure */ | 
					
						
							|  |  |  | ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return e->ciphers; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 05:28:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Sets the cipher callback in an ENGINE structure */ | 
					
						
							|  |  |  | int ENGINE_set_ciphers(ENGINE *e, ENGINE_CIPHERS_PTR f) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     e->ciphers = f; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } |