2016-05-18 03:38:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
2002-02-23 09:00:44 +08:00
|
|
|
*
|
2018-12-06 20:12:35 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 03:38:09 +08:00
|
|
|
* 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
|
2002-02-23 09:00:44 +08:00
|
|
|
*/
|
|
|
|
|
2016-02-09 00:43:03 +08:00
|
|
|
#include <openssl/engine.h>
|
2002-02-23 09:00:44 +08:00
|
|
|
|
2016-04-12 19:20:16 +08:00
|
|
|
void engine_load_openssl_int(void);
|
2017-03-24 23:19:00 +08:00
|
|
|
void engine_load_devcrypto_int(void);
|
2016-04-12 19:20:16 +08:00
|
|
|
void engine_load_rdrand_int(void);
|
|
|
|
void engine_load_dynamic_int(void);
|
|
|
|
void engine_load_padlock_int(void);
|
|
|
|
void engine_load_capi_int(void);
|
|
|
|
void engine_load_dasync_int(void);
|
|
|
|
void engine_load_afalg_int(void);
|
|
|
|
void engine_cleanup_int(void);
|