summaryrefslogtreecommitdiffstats
path: root/apps/include/engine_loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/include/engine_loader.h')
-rw-r--r--apps/include/engine_loader.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/include/engine_loader.h b/apps/include/engine_loader.h
new file mode 100644
index 0000000000..11598639a5
--- /dev/null
+++ b/apps/include/engine_loader.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
+ *
+ * Licensed under the OpenSSL license (the "License"). You may not use
+ * this file except in compliance with the License. You can obtain a copy
+ * in the file LICENSE in the source distribution or at
+ * https://www.openssl.org/source/license.html
+ */
+#ifndef HEADER_ENGINE_LOADER_H
+# define HEADER_ENGINE_LOADER_H
+
+# include <openssl/store.h>
+
+/* this is a private URI scheme */
+# define ENGINE_SCHEME "org.openssl.engine"
+# define ENGINE_SCHEME_COLON (ENGINE_SCHEME ":")
+
+int setup_engine_loader(void);
+void destroy_engine_loader(void);
+
+#endif