db8e714393746ae99fff1034be3682d89a9d5281
[openssl.git] / include / openssl / provider.h
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
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
8  */
9
10 #ifndef OSSL_PROVIDER_H
11 # define OSSL_PROVIDER_H
12
13 # include <openssl/core.h>
14
15 # ifdef __cplusplus
16 extern "C" {
17 # endif
18
19 /* Load and unload a provider */
20 OSSL_PROVIDER *OSSL_PROVIDER_load(OPENSSL_CTX *, const char *name);
21 int OSSL_PROVIDER_unload(OSSL_PROVIDER *prov);
22 int OSSL_PROVIDER_available(OPENSSL_CTX *, const char *name);
23
24 const OSSL_PARAM *OSSL_PROVIDER_gettable_params(const OSSL_PROVIDER *prov);
25 int OSSL_PROVIDER_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[]);
26
27 /* Add a built in providers */
28 int OSSL_PROVIDER_add_builtin(OPENSSL_CTX *, const char *name,
29                               OSSL_provider_init_fn *init_fn);
30
31 /* Information */
32 const char *OSSL_PROVIDER_name(const OSSL_PROVIDER *prov);
33
34 # ifdef __cplusplus
35 }
36 # endif
37
38 #endif