]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/evp_cnf.c
Rename OPENSSL_CTX prefix to OSSL_LIB_CTX
[thirdparty/openssl.git] / crypto / evp / evp_cnf.c
CommitLineData
0f113f3e 1/*
454afd98 2 * Copyright 2012-2020 The OpenSSL Project Authors. All Rights Reserved.
44488723 3 *
4a8b0c55 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
62867571
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
44488723
DSH
8 */
9
10#include <stdio.h>
44488723 11#include <openssl/crypto.h>
b39fc560 12#include "internal/cryptlib.h"
44488723 13#include <openssl/conf.h>
44488723
DSH
14#include <openssl/x509.h>
15#include <openssl/x509v3.h>
de3955f6 16#include <openssl/trace.h>
e6c54619 17#include "crypto/evp.h"
44488723
DSH
18
19/* Algorithm configuration module. */
20
21static int alg_module_init(CONF_IMODULE *md, const CONF *cnf)
0f113f3e
MC
22{
23 int i;
24 const char *oid_section;
25 STACK_OF(CONF_VALUE) *sktmp;
26 CONF_VALUE *oval;
75ebbd9a 27
de3955f6
RL
28 OSSL_TRACE2(CONF, "Loading EVP module: name %s, value %s\n",
29 CONF_imodule_get_name(md), CONF_imodule_get_value(md));
30
0f113f3e 31 oid_section = CONF_imodule_get_value(md);
75ebbd9a 32 if ((sktmp = NCONF_get_section(cnf, oid_section)) == NULL) {
0f113f3e
MC
33 EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_ERROR_LOADING_SECTION);
34 return 0;
35 }
36 for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
37 oval = sk_CONF_VALUE_value(sktmp, i);
86885c28 38 if (strcmp(oval->name, "fips_mode") == 0) {
0f113f3e 39 int m;
de3955f6 40
0f113f3e
MC
41 if (!X509V3_get_value_bool(oval, &m)) {
42 EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_INVALID_FIPS_MODE);
43 return 0;
44 }
de3955f6
RL
45 /*
46 * fips_mode is deprecated and should not be used in new
e0624f0d 47 * configurations.
de3955f6 48 */
e0624f0d
SL
49 if (!EVP_default_properties_enable_fips(cnf->libctx, m > 0)) {
50 EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_SET_DEFAULT_PROPERTY_FAILURE);
51 return 0;
52 }
de3955f6 53 } else if (strcmp(oval->name, "default_properties") == 0) {
e6c54619 54 if (!evp_set_default_properties_int(cnf->libctx, oval->value, 0)) {
e0624f0d
SL
55 EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_SET_DEFAULT_PROPERTY_FAILURE);
56 return 0;
57 }
0f113f3e
MC
58 } else {
59 EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_UNKNOWN_OPTION);
60 ERR_add_error_data(4, "name=", oval->name,
61 ", value=", oval->value);
de3955f6 62 return 0;
0f113f3e
MC
63 }
64
65 }
66 return 1;
67}
44488723
DSH
68
69void EVP_add_alg_module(void)
0f113f3e 70{
de3955f6 71 OSSL_TRACE(CONF, "Adding config module 'alg_section'\n");
0f113f3e
MC
72 CONF_module_add("alg_section", alg_module_init, 0);
73}