libpurple/certificate.c

Fri, 01 Jun 2007 23:54:46 +0000

author
William Ehlhardt <williamehlhardt@gmail.com>
date
Fri, 01 Jun 2007 23:54:46 +0000
branch
soc.2007.certmgr
changeset 17506
eff6bdd382f3
child 17509
fa009823dbfd
permissions
-rw-r--r--

- Added certificate.[ch] and got them integrated into the build

/**
 * @file certificate.h Public-Key Certificate API
 * @ingroup core
 */

/*
 *
 * purple
 *
 * Purple is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <glib.h>

#include "certificate.h"

/** List holding pointers to all registered certificate schemes */
GList *cert_schemes = NULL;

struct _Certificate
{
	/** Scheme this certificate is under */
	CertificateScheme * scheme;
	/** Opaque pointer to internal data */
	gpointer data;
};

mercurial