Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:40

0001 /*
0002  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
0003  *
0004  * Licensed under the Apache License 2.0 (the "License").  You may not use
0005  * this file except in compliance with the License.  You can obtain a copy
0006  * in the file LICENSE in the source distribution or at
0007  * https://www.openssl.org/source/license.html
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 /* Up until OpenSSL 0.9.5a, this was new_section */
0027 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
0028 /* Up until OpenSSL 0.9.5a, this was get_section */
0029 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
0030 /* Up until OpenSSL 0.9.5a, this was CONF_get_section */
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