Blame crypto/conf/conf_mall.c

Packit c4476c
/*
Packit c4476c
 * Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
 *
Packit c4476c
 * Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
 * this file except in compliance with the License.  You can obtain a copy
Packit c4476c
 * in the file LICENSE in the source distribution or at
Packit c4476c
 * https://www.openssl.org/source/license.html
Packit c4476c
 */
Packit c4476c
Packit c4476c
#include <stdio.h>
Packit c4476c
#include <openssl/crypto.h>
Packit c4476c
#include "internal/cryptlib.h"
Packit c4476c
#include <openssl/conf.h>
Packit c4476c
#include <openssl/x509.h>
Packit c4476c
#include <openssl/asn1.h>
Packit c4476c
#include <openssl/engine.h>
Packit c4476c
#include "conf_local.h"
Packit c4476c
Packit c4476c
/* Load all OpenSSL builtin modules */
Packit c4476c
Packit c4476c
void OPENSSL_load_builtin_modules(void)
Packit c4476c
{
Packit c4476c
    /* Add builtin modules here */
Packit c4476c
    ASN1_add_oid_module();
Packit c4476c
    ASN1_add_stable_module();
Packit c4476c
#ifndef OPENSSL_NO_ENGINE
Packit c4476c
    ENGINE_add_conf_module();
Packit c4476c
#endif
Packit c4476c
    EVP_add_alg_module();
Packit c4476c
    conf_add_ssl_module();
Packit c4476c
}