Add the concept of "Capabilities" to the default and fips providers
[openssl.git] / providers / common / include / prov / providercommon.h
index 5123f78ee11f4141e0e4f16b9c8985cc6cbb5eb8..b9fcf3d52e1eea2b71b9aefa0543e3adab23e76b 100644 (file)
@@ -8,10 +8,13 @@
  */
 
 #include <openssl/provider.h>
  */
 
 #include <openssl/provider.h>
+#include <openssl/core_numbers.h>
 
 
-const OSSL_PROVIDER *FIPS_get_provider(OPENSSL_CTX *ctx);
+const OSSL_CORE_HANDLE *FIPS_get_core_handle(OPENSSL_CTX *ctx);
 
 const char *ossl_prov_util_nid_to_name(int nid);
 
 int cipher_capable_aes_cbc_hmac_sha1(void);
 int cipher_capable_aes_cbc_hmac_sha256(void);
 
 const char *ossl_prov_util_nid_to_name(int nid);
 
 int cipher_capable_aes_cbc_hmac_sha1(void);
 int cipher_capable_aes_cbc_hmac_sha256(void);
+
+OSSL_provider_get_capabilities_fn provider_get_capabilities;