| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-08 20:04:41 +08:00
										 |  |  |  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/core.h>
 | 
					
						
							|  |  |  | #include "provider_local.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_provider_init_fn ossl_default_provider_init; | 
					
						
							| 
									
										
										
										
											2020-06-11 07:08:01 +08:00
										 |  |  | OSSL_provider_init_fn ossl_base_provider_init; | 
					
						
							| 
									
										
										
										
											2020-04-08 10:02:34 +08:00
										 |  |  | OSSL_provider_init_fn ossl_null_provider_init; | 
					
						
							| 
									
										
										
										
											2021-03-09 13:26:17 +08:00
										 |  |  | OSSL_provider_init_fn ossl_fips_intern_provider_init; | 
					
						
							| 
									
										
										
										
											2019-08-19 14:55:53 +08:00
										 |  |  | #ifdef STATIC_LEGACY
 | 
					
						
							|  |  |  | OSSL_provider_init_fn ossl_legacy_provider_init; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-09 13:26:17 +08:00
										 |  |  | const struct predefined_providers_st ossl_predefined_providers[] = { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifdef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2021-03-09 13:26:17 +08:00
										 |  |  |     { "fips", ossl_fips_intern_provider_init, 1 }, | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |     { "default", ossl_default_provider_init, 1 }, | 
					
						
							| 
									
										
										
										
											2019-08-19 14:55:53 +08:00
										 |  |  | # ifdef STATIC_LEGACY
 | 
					
						
							|  |  |  |     { "legacy", ossl_legacy_provider_init, 0 }, | 
					
						
							|  |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2020-06-11 07:08:01 +08:00
										 |  |  |     { "base", ossl_base_provider_init, 0 }, | 
					
						
							| 
									
										
										
										
											2020-04-08 10:02:34 +08:00
										 |  |  |     { "null", ossl_null_provider_init, 0 }, | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |     { NULL, NULL, 0 } | 
					
						
							|  |  |  | }; |