2018-12-27 03:05:46 +03:00
|
|
|
/*
|
2020-04-10 20:35:01 +00:00
|
|
|
* Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
|
2018-12-27 03:05:46 +03: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HEADER_INTERNAL_CONF_H
|
|
|
|
# define HEADER_INTERNAL_CONF_H
|
|
|
|
|
|
|
|
#include <openssl/conf.h>
|
|
|
|
|
2020-04-10 20:35:01 +00:00
|
|
|
#define DEFAULT_CONF_MFLAGS \
|
|
|
|
(CONF_MFLAGS_DEFAULT_SECTION | \
|
|
|
|
CONF_MFLAGS_IGNORE_MISSING_FILE | \
|
|
|
|
CONF_MFLAGS_IGNORE_RETURN_CODES)
|
|
|
|
|
2018-12-27 03:05:46 +03:00
|
|
|
struct ossl_init_settings_st {
|
2020-04-10 20:35:01 +00:00
|
|
|
char *filename;
|
2018-12-27 03:05:46 +03:00
|
|
|
char *appname;
|
2020-04-10 20:35:01 +00:00
|
|
|
unsigned long flags;
|
2018-12-27 03:05:46 +03:00
|
|
|
};
|
|
|
|
|
2020-04-10 20:35:01 +00:00
|
|
|
int openssl_config_int(const OPENSSL_INIT_SETTINGS *);
|
2018-12-27 03:05:46 +03:00
|
|
|
void openssl_no_config_int(void);
|
|
|
|
void conf_modules_free_int(void);
|
|
|
|
|
|
|
|
#endif
|