2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2000-11-02 20:33:04 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-11-02 20:33:04 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2001-09-07 04:14:48 +00:00
|
|
|
#include "eng_int.h"
|
2000-11-07 13:53:21 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
void ENGINE_load_builtin_engines(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
/* Some ENGINEs need this */
|
|
|
|
OPENSSL_cpuid_setup();
|
2016-02-14 20:25:54 +00:00
|
|
|
|
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_ALL_BUILTIN, NULL);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2002-10-02 00:19:33 +00:00
|
|
|
|
2017-06-13 20:33:33 +00:00
|
|
|
#if (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)) && !defined(OPENSSL_NO_DEPRECATED)
|
2015-01-22 03:40:55 +00:00
|
|
|
void ENGINE_setup_bsd_cryptodev(void)
|
|
|
|
{
|
2002-10-02 00:19:33 +00:00
|
|
|
}
|
|
|
|
#endif
|