summaryrefslogtreecommitdiffstats
path: root/src/include/usr
diff options
context:
space:
mode:
authorMichael Brown2016-08-25 16:39:43 +0200
committerMichael Brown2016-08-31 16:41:15 +0200
commit1e277ab062d23ffa1b35bd078f9fba5c9b4e6495 (patch)
tree117c48b7461cc9206cc227e5e5043f6b096c8a42 /src/include/usr
parent[crypto] Allow certificates to be marked as having been added explicitly (diff)
downloadipxe-1e277ab062d23ffa1b35bd078f9fba5c9b4e6495.tar.gz
ipxe-1e277ab062d23ffa1b35bd078f9fba5c9b4e6495.tar.xz
ipxe-1e277ab062d23ffa1b35bd078f9fba5c9b4e6495.zip
[crypto] Add certstat() to display basic certificate information
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/usr')
-rw-r--r--src/include/usr/certmgmt.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/usr/certmgmt.h b/src/include/usr/certmgmt.h
new file mode 100644
index 00000000..4363b03e
--- /dev/null
+++ b/src/include/usr/certmgmt.h
@@ -0,0 +1,16 @@
+#ifndef _USR_CERTMGMT_H
+#define _USR_CERTMGMT_H
+
+/** @file
+ *
+ * Certificate management
+ *
+ */
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#include <ipxe/x509.h>
+
+extern void certstat ( struct x509_certificate *cert );
+
+#endif /* _USR_CERTMGMT_H */