2016-02-10 00:52:40 +08:00
|
|
|
/*
|
2018-09-11 20:22:14 +08:00
|
|
|
* Copyright 2016-2018 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
|
2016-02-10 00:52:40 +08:00
|
|
|
|
|
|
|
#include <openssl/conf.h>
|
|
|
|
|
2019-01-01 15:53:24 +08:00
|
|
|
#define DEFAULT_CONF_MFLAGS \
|
|
|
|
(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
|
|
|
};
|
|
|
|
|
2019-01-01 15:53:24 +08:00
|
|
|
int openssl_config_int(const OPENSSL_INIT_SETTINGS *);
|
2016-04-12 19:20:16 +08:00
|
|
|
void openssl_no_config_int(void);
|
|
|
|
void conf_modules_free_int(void);
|
2016-02-10 00:52:40 +08:00
|
|
|
|
|
|
|
#endif
|