summaryrefslogtreecommitdiffstats
path: root/crypto/provider_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/provider_local.h')
-rw-r--r--crypto/provider_local.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/provider_local.h b/crypto/provider_local.h
index 6c34bda51a..e0bcbcb9f9 100644
--- a/crypto/provider_local.h
+++ b/crypto/provider_local.h
@@ -15,19 +15,19 @@ typedef struct {
} INFOPAIR;
DEFINE_STACK_OF(INFOPAIR)
-struct provider_info_st {
+typedef struct {
char *name;
char *path;
OSSL_provider_init_fn *init;
STACK_OF(INFOPAIR) *parameters;
unsigned int is_fallback:1;
-};
+} OSSL_PROVIDER_INFO;
-extern const struct provider_info_st ossl_predefined_providers[];
+extern const OSSL_PROVIDER_INFO ossl_predefined_providers[];
-void ossl_provider_info_clear(struct provider_info_st *info);
+void ossl_provider_info_clear(OSSL_PROVIDER_INFO *info);
int ossl_provider_info_add_to_store(OSSL_LIB_CTX *libctx,
- const struct provider_info_st *entry);
-int ossl_provider_info_add_parameter(struct provider_info_st *provinfo,
+ OSSL_PROVIDER_INFO *entry);
+int ossl_provider_info_add_parameter(OSSL_PROVIDER_INFO *provinfo,
const char *name,
const char *value);