aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-08-14 16:48:40 +0200
committerMartin Willi <martin@strongswan.org>2009-08-26 11:23:50 +0200
commit1e0f69373a4e55050eb2ebee211681326e647fae (patch)
tree8803f96cc3d5a9960ad07c66449d64ace6dcc1e6 /src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h
parent750bbcf9a80c2613245b47a366ed66e0abace561 (diff)
downloadstrongswan-1e0f69373a4e55050eb2ebee211681326e647fae.tar.bz2
strongswan-1e0f69373a4e55050eb2ebee211681326e647fae.tar.xz
implemented a pkcs1 plugin providing PKCS#1 key parsing builders
Diffstat (limited to 'src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h')
-rw-r--r--src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h b/src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h
new file mode 100644
index 000000000..3b77de179
--- /dev/null
+++ b/src/libstrongswan/plugins/pkcs1/pkcs1_plugin.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2009 Martin Willi
+ * Hochschule fuer Technik Rapperswil
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ */
+
+/**
+ * @defgroup pkcs1_p pkcs1
+ * @ingroup plugins
+ *
+ * @defgroup pkcs1_plugin pkcs1_plugin
+ * @{ @ingroup pkcs1_p
+ */
+
+#ifndef PKCS1_PLUGIN_H_
+#define PKCS1_PLUGIN_H_
+
+#include <plugins/plugin.h>
+
+typedef struct pkcs1_plugin_t pkcs1_plugin_t;
+
+/**
+ * Plugin providing PKCS#1 private/public key decoding functions
+ */
+struct pkcs1_plugin_t {
+
+ /**
+ * implements plugin interface
+ */
+ plugin_t plugin;
+};
+
+/**
+ * Create a pkcs1_plugin instance.
+ */
+plugin_t *plugin_create();
+
+#endif /** PKCS1_PLUGIN_H_ @}*/