]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/provider.h
Constify OSSL_PROVIDER getter input parameters
[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
10#ifndef OSSL_PROVIDER_H
11# define OSSL_PROVIDER_H
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);
22
24626a47
RL
23const OSSL_ITEM *OSSL_PROVIDER_get_param_types(const OSSL_PROVIDER *prov);
24int OSSL_PROVIDER_get_params(const OSSL_PROVIDER *prov,
25 const 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
31# ifdef __cplusplus
32}
33# endif
34
35#endif