OpenVAS Libraries  6.0+beta5
openvas_certificate_file.h
Go to the documentation of this file.
1 /* OpenVAS-Client
2  * $Id$
3  * Description: Writing and reading one or more certificate_t to / from
4  * a file that roughly uses freedesktop.org specifications (Glibs GKeyFile).
5  *
6  * Authors:
7  * Felix Wolfsteller <felix.wolfsteller@intevation.de>
8  *
9  * Copyright:
10  * Copyright (C) 2009 Greenbone Networks GmbH
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2,
14  * or, at your option, any later version as published by the Free
15  * Software Foundation
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26 
27 #ifndef _OPENVAS_CERTIFICATE_FILE_H
28 #define _OPENVAS_CERTIFICATE_FILE_H
29 
30 #include <glib.h>
31 
32 gboolean openvas_certificate_file_write (GHashTable * certs, char *filename);
33 
34 GHashTable *openvas_certificate_file_read (char *filename);
35 
36 #endif