]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/common/include/prov/providercommon.h
Add ossl_provider symbols
[thirdparty/openssl.git] / providers / common / include / prov / providercommon.h
CommitLineData
da747958 1/*
33388b44 2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
da747958
MC
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
4cecf7a1 10#include <openssl/provider.h>
23c48d94 11#include <openssl/core_dispatch.h>
4cecf7a1 12
b4250010 13const OSSL_CORE_HANDLE *FIPS_get_core_handle(OSSL_LIB_CTX *ctx);
4cecf7a1 14
592dcfd3
P
15int ossl_cipher_capable_aes_cbc_hmac_sha1(void);
16int ossl_cipher_capable_aes_cbc_hmac_sha256(void);
72bfc958 17
c8830891 18OSSL_FUNC_provider_get_capabilities_fn ossl_prov_get_capabilities;
eab7b424 19
5736923f 20/* Set the error state if this is a FIPS module */
35e6ea3b 21void ossl_set_error_state(const char *type);
5736923f
P
22
23/* Return true if the module is in a usable condition */
eab7b424 24int ossl_prov_is_running(void);