comparison libpurple/certificate.c @ 17910:668a294f9a72

- Added certificate.[ch] and got them integrated into the build
author William Ehlhardt <williamehlhardt@gmail.com>
date Fri, 01 Jun 2007 23:54:46 +0000
parents
children 55a0b0a42000
comparison
equal deleted inserted replaced
17909:f7bf776d628a 17910:668a294f9a72
1 /**
2 * @file certificate.h Public-Key Certificate API
3 * @ingroup core
4 */
5
6 /*
7 *
8 * purple
9 *
10 * Purple is the legal property of its developers, whose names are too numerous
11 * to list here. Please refer to the COPYRIGHT file distributed with this
12 * source distribution.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 */
28
29 #include <glib.h>
30
31 #include "certificate.h"
32
33 /** List holding pointers to all registered certificate schemes */
34 GList *cert_schemes = NULL;
35
36 struct _Certificate
37 {
38 /** Scheme this certificate is under */
39 CertificateScheme * scheme;
40 /** Opaque pointer to internal data */
41 gpointer data;
42 };
43
44