summaryrefslogtreecommitdiff
path: root/content/certdb.h
blob: 28aa88664e8f8efc69510e08a2834f0f121795d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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