2004-05-28 Not Zed <NotZed@Ximian.com> ** See bugs #52061 & #52669. * gui/smime-ui.glade: added cert-trust-dialog and tweaked the ca-trust-dialog. * gui/ca-trust-dialog.c (ca_trust_dialog_show): Fix the %s in the label. Slack. (ca_trust_dialog_show): slight rearrangement. * gui/certificate-manager.c (add_contact_cert): fill out fields. * lib/e-cert.c (e_cert_get_usage): helper to get the usage of a cert. * gui/certificate-manager.c (edit_ca): use the right certdb, not the e-one. (add_user_cert): fill out missing columns. * lib/e-cert.c (e_cert_get_ca_cert): new method to find the ca cert of a cert. * gui/cert-trust-dialog.[ch]: peer cert trust editor. * gui/certificate-manager.c (edit_contact): implement. svn path=/trunk/; revision=26119
106 lines
3.8 KiB
C
106 lines
3.8 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Authors: Chris Toshok <toshok@ximian.com>
|
|
*
|
|
* Copyright (C) 2003 Ximian, Inc. (www.ximian.com)
|
|
*
|
|
* 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 Street #330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _E_CERT_H_
|
|
#define _E_CERT_H_
|
|
|
|
#include <glib-object.h>
|
|
#include <cert.h>
|
|
#include "e-asn1-object.h"
|
|
|
|
#define E_TYPE_CERT (e_cert_get_type ())
|
|
#define E_CERT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_CERT, ECert))
|
|
#define E_CERT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_CERT, ECertClass))
|
|
#define E_IS_CERT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_CERT))
|
|
#define E_IS_CERT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_CERT))
|
|
#define E_CERT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_CERT, ECertClass))
|
|
|
|
typedef struct _ECert ECert;
|
|
typedef struct _ECertClass ECertClass;
|
|
typedef struct _ECertPrivate ECertPrivate;
|
|
|
|
typedef enum {
|
|
E_CERT_CA,
|
|
E_CERT_CONTACT,
|
|
E_CERT_SITE,
|
|
E_CERT_USER,
|
|
E_CERT_UNKNOWN
|
|
} ECertType;
|
|
|
|
struct _ECert {
|
|
GObject parent;
|
|
|
|
ECertPrivate *priv;
|
|
};
|
|
|
|
struct _ECertClass {
|
|
GObjectClass parent_class;
|
|
|
|
/* Padding for future expansion */
|
|
void (*_ecert_reserved0) (void);
|
|
void (*_ecert_reserved1) (void);
|
|
void (*_ecert_reserved2) (void);
|
|
void (*_ecert_reserved3) (void);
|
|
void (*_ecert_reserved4) (void);
|
|
};
|
|
|
|
GType e_cert_get_type (void);
|
|
|
|
ECert* e_cert_new (CERTCertificate *cert);
|
|
ECert* e_cert_new_from_der (char *data, guint32 len);
|
|
|
|
CERTCertificate* e_cert_get_internal_cert (ECert *cert);
|
|
|
|
gboolean e_cert_get_raw_der (ECert *cert, char **data, guint32 *len);
|
|
const char* e_cert_get_window_title (ECert *cert);
|
|
const char* e_cert_get_nickname (ECert *cert);
|
|
const char* e_cert_get_email (ECert *cert);
|
|
const char* e_cert_get_org (ECert *cert);
|
|
const char* e_cert_get_org_unit (ECert *cert);
|
|
const char* e_cert_get_cn (ECert *cert);
|
|
const char* e_cert_get_subject_name (ECert *cert);
|
|
|
|
const char* e_cert_get_issuer_name (ECert *cert);
|
|
const char* e_cert_get_issuer_cn (ECert *cert);
|
|
const char* e_cert_get_issuer_org (ECert *cert);
|
|
const char* e_cert_get_issuer_org_unit (ECert *cert);
|
|
|
|
PRTime e_cert_get_issued_on_time (ECert *cert);
|
|
const char* e_cert_get_issued_on (ECert *cert);
|
|
PRTime e_cert_get_expires_on_time (ECert *cert);
|
|
const char* e_cert_get_expires_on (ECert *cert);
|
|
const char* e_cert_get_usage(ECert *cert);
|
|
|
|
const char* e_cert_get_serial_number (ECert *cert);
|
|
const char* e_cert_get_sha1_fingerprint (ECert *cert);
|
|
const char* e_cert_get_md5_fingerprint (ECert *cert);
|
|
|
|
GList* e_cert_get_chain (ECert *cert);
|
|
ECert * e_cert_get_ca_cert (ECert *ecert);
|
|
EASN1Object* e_cert_get_asn1_struct (ECert *cert);
|
|
|
|
gboolean e_cert_mark_for_deletion (ECert *cert);
|
|
|
|
ECertType e_cert_get_cert_type (ECert *cert);
|
|
|
|
#endif /* _E_CERT_H_ */
|