]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/eng_all.c
eng_devcrypto: make sure digest can do copy
[thirdparty/openssl.git] / crypto / engine / eng_all.c
CommitLineData
0f113f3e 1/*
fd38836b 2 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
11c0f120 3 *
3c120f91 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
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
11c0f120
RL
8 */
9
b39fc560 10#include "internal/cryptlib.h"
14cfde9c 11#include "eng_int.h"
669cefdd 12
b6d1e52d 13void ENGINE_load_builtin_engines(void)
0f113f3e
MC
14{
15 /* Some ENGINEs need this */
16 OPENSSL_cpuid_setup();
31305cdf
VD
17
18 OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_ALL_BUILTIN, NULL);
0f113f3e 19}
293d5082 20
fcd2d5a6
RL
21#if (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)) \
22 && !OPENSSL_API_1_1_0
0f113f3e
MC
23void ENGINE_setup_bsd_cryptodev(void)
24{
293d5082
RL
25}
26#endif