116 lines
3.7 KiB
C
116 lines
3.7 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef PRIVACY_H
|
|
#define PRIVACY_H
|
|
|
|
typedef struct _PrivacySystem PrivacySystem;
|
|
typedef struct _PrivacyData PrivacyData;
|
|
|
|
typedef enum {
|
|
SIGNATURE_UNCHECKED,
|
|
SIGNATURE_OK,
|
|
SIGNATURE_WARN,
|
|
SIGNATURE_KEY_EXPIRED,
|
|
SIGNATURE_INVALID,
|
|
SIGNATURE_CHECK_FAILED,
|
|
SIGNATURE_CHECK_TIMEOUT
|
|
} SignatureStatus;
|
|
|
|
#include <glib.h>
|
|
|
|
#include "procmime.h"
|
|
#include "prefs_account.h"
|
|
|
|
void privacy_register_system (PrivacySystem *system);
|
|
void privacy_unregister_system (PrivacySystem *system);
|
|
|
|
void privacy_free_privacydata (PrivacyData *);
|
|
|
|
void privacy_msginfo_get_signed_state (MsgInfo *, gchar **system);
|
|
gboolean privacy_mimeinfo_is_signed (MimeInfo *);
|
|
gint privacy_mimeinfo_check_signature (MimeInfo *);
|
|
SignatureStatus privacy_mimeinfo_get_sig_status (MimeInfo *);
|
|
gchar *privacy_mimeinfo_sig_info_short (MimeInfo *);
|
|
gchar *privacy_mimeinfo_sig_info_full (MimeInfo *);
|
|
|
|
gboolean privacy_mimeinfo_is_encrypted (MimeInfo *);
|
|
gint privacy_mimeinfo_decrypt (MimeInfo *);
|
|
|
|
GSList *privacy_get_system_ids ();
|
|
const gchar *privacy_system_get_name (const gchar *);
|
|
gboolean privacy_system_can_sign (const gchar *);
|
|
gboolean privacy_system_can_encrypt (const gchar *);
|
|
|
|
gboolean privacy_sign (const gchar *system,
|
|
MimeInfo *mimeinfo,
|
|
PrefsAccount *account,
|
|
const gchar *from_addr);
|
|
gchar *privacy_get_encrypt_data (const gchar *system,
|
|
GSList *recp_names);
|
|
const gchar *privacy_get_encrypt_warning (const gchar *system);
|
|
gboolean privacy_encrypt (const gchar *system,
|
|
MimeInfo *mimeinfo,
|
|
const gchar *encdata);
|
|
|
|
void privacy_set_error (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
|
|
void privacy_reset_error (void);
|
|
gboolean privacy_peek_error (void);
|
|
const gchar *privacy_get_error (void);
|
|
|
|
struct _PrivacySystem {
|
|
/** Identifier for the PrivacySystem that can use in config files */
|
|
gchar *id;
|
|
/** Human readable name for the PrivacySystem for the user interface */
|
|
gchar *name;
|
|
|
|
void (*free_privacydata) (PrivacyData *data);
|
|
|
|
gboolean (*is_signed) (MimeInfo *mimeinfo);
|
|
gint (*check_signature) (MimeInfo *mimeinfo);
|
|
SignatureStatus (*get_sig_status) (MimeInfo *mimeinfo);
|
|
gchar *(*get_sig_info_short) (MimeInfo *mimeinfo);
|
|
gchar *(*get_sig_info_full) (MimeInfo *mimeinfo);
|
|
|
|
gboolean (*is_encrypted) (MimeInfo *mimeinfo);
|
|
MimeInfo *(*decrypt) (MimeInfo *mimeinfo);
|
|
|
|
gboolean can_sign;
|
|
gboolean (*sign) (MimeInfo *mimeinfo,
|
|
PrefsAccount *account,
|
|
const gchar *from_addr);
|
|
|
|
gboolean can_encrypt;
|
|
gchar *(*get_encrypt_data) (GSList *recp_names);
|
|
gboolean (*encrypt) (MimeInfo *mimeinfo,
|
|
const gchar *encrypt_data);
|
|
const gchar *(*get_encrypt_warning) (void);
|
|
void (*inhibit_encrypt_warning) (gboolean inhibit);
|
|
gboolean (*auto_check_signatures)(void);
|
|
};
|
|
|
|
struct _PrivacyData {
|
|
PrivacySystem *system;
|
|
};
|
|
|
|
void privacy_inhibit_encrypt_warning (const gchar *id,
|
|
gboolean inhibit);
|
|
gboolean privacy_auto_check_signatures(MimeInfo *mimeinfo);
|
|
|
|
#endif /* PRIVACY_H */
|