| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-02-18 22:57:13 +08:00
										 |  |  |  * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:12:35 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:17 +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
 | 
					
						
							| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:57 +08:00
										 |  |  | #ifndef OSSL_INTERNAL_CONF_H
 | 
					
						
							|  |  |  | # define OSSL_INTERNAL_CONF_H
 | 
					
						
							| 
									
										
										
										
											2021-02-07 05:14:03 +08:00
										 |  |  | # pragma once
 | 
					
						
							| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-07 05:14:03 +08:00
										 |  |  | # include <openssl/conf.h>
 | 
					
						
							| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-07 05:14:03 +08:00
										 |  |  | # define DEFAULT_CONF_MFLAGS \
 | 
					
						
							| 
									
										
										
										
											2019-01-01 15:53:24 +08:00
										 |  |  |     (CONF_MFLAGS_DEFAULT_SECTION | \ | 
					
						
							|  |  |  |      CONF_MFLAGS_IGNORE_MISSING_FILE | \ | 
					
						
							|  |  |  |      CONF_MFLAGS_IGNORE_RETURN_CODES) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-10 22:55:48 +08:00
										 |  |  | struct ossl_init_settings_st { | 
					
						
							| 
									
										
										
										
											2019-01-01 15:53:24 +08:00
										 |  |  |     char *filename; | 
					
						
							| 
									
										
										
										
											2016-06-13 09:49:40 +08:00
										 |  |  |     char *appname; | 
					
						
							| 
									
										
										
										
											2019-01-01 15:53:24 +08:00
										 |  |  |     unsigned long flags; | 
					
						
							| 
									
										
										
										
											2016-02-10 22:55:48 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 09:36:36 +08:00
										 |  |  | int ossl_config_int(const OPENSSL_INIT_SETTINGS *); | 
					
						
							|  |  |  | void ossl_no_config_int(void); | 
					
						
							|  |  |  | void ossl_config_modules_free(void); | 
					
						
							| 
									
										
										
										
											2016-02-10 00:52:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |