summaryrefslogtreecommitdiff
path: root/content/certdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/certdb.h')
-rw-r--r--content/certdb.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/content/certdb.h b/content/certdb.h
new file mode 100644
index 000000000..28aa88664
--- /dev/null
+++ b/content/certdb.h
@@ -0,0 +1,18 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2006 John M Bell <jmb202@ecs.soton.ac.uk>
+ */
+
+/** \file
+ * HTTPS certificate verification database (interface)
+ */
+
+#ifndef _NETSURF_CONTENT_CERTDB_H_
+#define _NETSURF_CONTENT_CERTDB_H_
+
+bool certdb_insert(const char *url);
+const char *certdb_get(const char *url);
+
+#endif