aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-cipher-context.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-02-19 00:20:19 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-02-19 00:20:19 +0800
commitb85cbb139e63d97b646aca22866aa1e440b386c8 (patch)
treebcc31a01759e6a1b71fd941a5c40197fc41de706 /camel/camel-cipher-context.h
parent8d4f642268967bcf14edf6d070ffdda19be4cb9f (diff)
downloadgsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar.gz
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar.bz2
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar.lz
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar.xz
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.tar.zst
gsoc2013-evolution-b85cbb139e63d97b646aca22866aa1e440b386c8.zip
Use the trust to decide the validity signature status. (Better way of
2004-02-18 Jeffrey Stedfast <fejj@ximian.com> * camel-gpg-context.c (gpg_verify): Use the trust to decide the validity signature status. (Better way of solving yesterday's problem) * camel-cipher-context.h: Revert change from yesterday. svn path=/trunk/; revision=24779
Diffstat (limited to 'camel/camel-cipher-context.h')
-rw-r--r--camel/camel-cipher-context.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/camel/camel-cipher-context.h b/camel/camel-cipher-context.h
index 6aef6ab13b..4b5dbaed42 100644
--- a/camel/camel-cipher-context.h
+++ b/camel/camel-cipher-context.h
@@ -62,15 +62,6 @@ enum _camel_cipher_validity_sign_t {
CAMEL_CIPHER_VALIDITY_SIGN_UNKNOWN,
};
-enum _camel_cipher_validity_trust_t {
- CAMEL_CIPHER_VALIDITY_TRUST_NONE,
- CAMEL_CIPHER_VALIDITY_TRUST_NEVER,
- CAMEL_CIPHER_VALIDITY_TRUST_UNDEFINED,
- CAMEL_CIPHER_VALIDITY_TRUST_MARGINAL,
- CAMEL_CIPHER_VALIDITY_TRUST_FULLY,
- CAMEL_CIPHER_VALIDITY_TRUST_ULTIMATE
-};
-
enum _camel_cipher_validity_encrypt_t {
CAMEL_CIPHER_VALIDITY_ENCRYPT_NONE,
CAMEL_CIPHER_VALIDITY_ENCRYPT_WEAK,
@@ -98,7 +89,6 @@ struct _CamelCipherValidity {
struct {
enum _camel_cipher_validity_sign_t status;
- enum _camel_cipher_validity_trust_t trust;
char *description;
EDList signers; /* CamelCipherCertInfo's */
} sign;