1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Authors: Jeffrey Stedfast <fejj@ximian.com>
*
* Copyright 2002 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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 __CAMEL_CERTDB_H__
#define __CAMEL_CERTDB_H__
#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */
#include <stdio.h>
#include <camel/camel-object.h>
#define CAMEL_CERTDB_TYPE (camel_certdb_get_type ())
#define CAMEL_CERTDB(obj) (CAMEL_CHECK_CAST (obj, camel_certdb_get_type (), CamelCertDB))
#define CAMEL_CERTDB_CLASS(klass) (CAMEL_CHECK_CLASS_CAST (klass, camel_certdb_get_type (), CamelCertDBClass))
#define CAMEL_IS_CERTDB(obj) (CAMEL_CHECK_TYPE (obj, camel_certdb_get_type ()))
typedef struct _CamelCertDB CamelCertDB;
typedef struct _CamelCertDBClass CamelCertDBClass;
enum {
CAMEL_CERTDB_DIRTY = (1 << 0),
};
enum {
CAMEL_CERT_STRING_ISSUER,
CAMEL_CERT_STRING_SUBJECT,
CAMEL_CERT_STRING_HOSTNAME,
CAMEL_CERT_STRING_FINGERPRINT,
};
typedef enum {
CAMEL_CERT_TRUST_UNKNOWN,
CAMEL_CERT_TRUST_NEVER,
CAMEL_CERT_TRUST_MARGINAL,
CAMEL_CERT_TRUST_FULLY,
CAMEL_CERT_TRUST_ULTIMATE,
} CamelCertTrust;
typedef struct {
guint32 refcount;
char *issuer;
char *subject;
char *hostname;
char *fingerprint;
CamelCertTrust trust;
GByteArray *rawcert;
} CamelCert;
struct _CamelCertDB {
CamelObject parent_object;
struct _CamelCertDBPrivate *priv;
char *filename;
guint32 version;
guint32 saved_certs;
guint32 flags;
guint32 cert_size;
struct _EMemChunk *cert_chunks;
GPtrArray *certs;
GHashTable *cert_hash;
};
struct _CamelCertDBClass {
CamelObjectClass parent_class;
int (*header_load) (CamelCertDB *certdb, FILE *istream);
int (*header_save) (CamelCertDB *certdb, FILE *ostream);
CamelCert * (*cert_load) (CamelCertDB *certdb, FILE *istream);
int (*cert_save) (CamelCertDB *certdb, CamelCert *cert, FILE *ostream);
CamelCert * (*cert_new) (CamelCertDB *certdb);
void (*cert_free) (CamelCertDB *certdb, CamelCert *cert);
const char * (*cert_get_string) (CamelCertDB *certdb, CamelCert *cert, int string);
void (*cert_set_string) (CamelCertDB *certdb, CamelCert *cert, int string, const char *value);
};
CamelType camel_certdb_get_type (void);
CamelCertDB *camel_certdb_new (void);
void camel_certdb_set_default (CamelCertDB *certdb);
CamelCertDB *camel_certdb_get_default (void);
void camel_certdb_set_filename (CamelCertDB *certdb, const char *filename);
int camel_certdb_load (CamelCertDB *certdb);
int camel_certdb_save (CamelCertDB *certdb);
void camel_certdb_touch (CamelCertDB *certdb);
CamelCert *camel_certdb_get_cert (CamelCertDB *certdb, const char *fingerprint);
void camel_certdb_add (CamelCertDB *certdb, CamelCert *cert);
void camel_certdb_remove (CamelCertDB *certdb, CamelCert *cert);
CamelCert *camel_certdb_cert_new (CamelCertDB *certdb);
void camel_certdb_cert_ref (CamelCertDB *certdb, CamelCert *cert);
void camel_certdb_cert_unref (CamelCertDB *certdb, CamelCert *cert);
void camel_certdb_clear (CamelCertDB *certdb);
const char *camel_cert_get_string (CamelCertDB *certdb, CamelCert *cert, int string);
void camel_cert_set_string (CamelCertDB *certdb, CamelCert *cert, int string, const char *value);
#define camel_cert_get_issuer(certdb,cert) camel_cert_get_string (certdb, cert, CAMEL_CERT_STRING_ISSUER)
#define camel_cert_get_subject(certdb,cert) camel_cert_get_string (certdb, cert, CAMEL_CERT_STRING_SUBJECT)
#define camel_cert_get_hostname(certdb,cert) camel_cert_get_string (certdb, cert, CAMEL_CERT_STRING_HOSTNAME)
#define camel_cert_get_fingerprint(certdb,cert) camel_cert_get_string (certdb, cert, CAMEL_CERT_STRING_FINGERPRINT)
#define camel_cert_set_issuer(certdb,cert,issuer) camel_cert_set_string (certdb, cert, CAMEL_CERT_STRING_ISSUER, issuer)
#define camel_cert_set_subject(certdb,cert,subject) camel_cert_set_string (certdb, cert, CAMEL_CERT_STRING_SUBJECT, subject)
#define camel_cert_set_hostname(certdb,cert,hostname) camel_cert_set_string (certdb, cert, CAMEL_CERT_STRING_HOSTNAME, hostname)
#define camel_cert_set_fingerprint(certdb,cert,fingerprint) camel_cert_set_string (certdb, cert, CAMEL_CERT_STRING_FINGERPRINT, fingerprint)
CamelCertTrust camel_cert_get_trust (CamelCertDB *certdb, CamelCert *cert);
void camel_cert_set_trust (CamelCertDB *certdb, CamelCert *cert, CamelCertTrust trust);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __CAMEL_CERTDB_H__ */
|