File indexing completed on 2025-01-18 10:05:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef OPENSSL_CONF_API_H
0011 # define OPENSSL_CONF_API_H
0012 # pragma once
0013
0014 # include <openssl/macros.h>
0015 # ifndef OPENSSL_NO_DEPRECATED_3_0
0016 # define HEADER_CONF_API_H
0017 # endif
0018
0019 # include <openssl/lhash.h>
0020 # include <openssl/conf.h>
0021
0022 #ifdef __cplusplus
0023 extern "C" {
0024 #endif
0025
0026
0027 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
0028
0029 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
0030
0031 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
0032 const char *section);
0033
0034 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
0035 char *_CONF_get_string(const CONF *conf, const char *section,
0036 const char *name);
0037 long _CONF_get_number(const CONF *conf, const char *section,
0038 const char *name);
0039
0040 int _CONF_new_data(CONF *conf);
0041 void _CONF_free_data(CONF *conf);
0042
0043 #ifdef __cplusplus
0044 }
0045 #endif
0046 #endif