]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/provider.h
Fix header file include guard names
[thirdparty/openssl.git] / include / openssl / provider.h
CommitLineData
3374dc03
RL
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
ae4186b0
DMSP
10#ifndef OPENSSL_PROVIDER_H
11# define OPENSSL_PROVIDER_H
3374dc03
RL
12
13# include <openssl/core.h>
14
15# ifdef __cplusplus
16extern "C" {
17# endif
18
19/* Load and unload a provider */
20OSSL_PROVIDER *OSSL_PROVIDER_load(OPENSSL_CTX *, const char *name);
21int OSSL_PROVIDER_unload(OSSL_PROVIDER *prov);
36f5ec55 22int OSSL_PROVIDER_available(OPENSSL_CTX *, const char *name);
3374dc03 23
dca97d00 24const OSSL_PARAM *OSSL_PROVIDER_gettable_params(const OSSL_PROVIDER *prov);
4e7991b4 25int OSSL_PROVIDER_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[]);
3374dc03
RL
26
27/* Add a built in providers */
28int OSSL_PROVIDER_add_builtin(OPENSSL_CTX *, const char *name,
29 OSSL_provider_init_fn *init_fn);
30
b37066fd
RL
31/* Information */
32const char *OSSL_PROVIDER_name(const OSSL_PROVIDER *prov);
33
3374dc03
RL
34# ifdef __cplusplus
35}
36# endif
37
38#endif